16 lines
211 B
Nix
Executable File
16 lines
211 B
Nix
Executable File
{ config, lib, ... }:
|
|
|
|
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
shellIntegration.enableZshIntegration = true;
|
|
};
|
|
|
|
# Catppuccin <3
|
|
catppuccin.kitty = {
|
|
enable = true;
|
|
flavor = "mocha";
|
|
};
|
|
|
|
}
|