dots/modules/home-manager/features/kitty.nix
2025-10-22 01:22:05 +11:00

21 lines
391 B
Nix

{
pkgs,
...
}:
{
programs.kitty = {
enable = true;
enableGitIntegration = true;
font = {
package = pkgs.nerd-fonts.jetbrains-mono;
name = "JetBrainsMono Nerd Font";
size = 13;
};
themeFile = "Catppuccin-Mocha";
settings = {
shell = "zellij -l welcome";
remember_window_size = true;
confirm_os_window_close = 0;
};
};
}