15 lines
234 B
Nix
15 lines
234 B
Nix
|
|
{
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
{
|
||
|
|
programs.kitty = {
|
||
|
|
enable = true;
|
||
|
|
enableGitIntegration = true;
|
||
|
|
font = {
|
||
|
|
name = "FiraCode Nerd Font";
|
||
|
|
};
|
||
|
|
shellIntegration.enableZshIntegration = true;
|
||
|
|
themeFile = "Catppuccin-Mocha";
|
||
|
|
};
|
||
|
|
}
|