config/homes/desktop/kitty.nix

13 lines
252 B
Nix
Raw Permalink Normal View History

2024-09-15 12:56:25 +01:00
{
programs.kitty = {
enable = true;
font.name = "JetBrains Mono Nerd Font";
font.size = 12;
theme = "One Half Dark";
shellIntegration.enableZshIntegration = true;
settings = {
confirm_os_window_close = -1;
};
};
}