nix/moduler/kitty.nix
2025-10-06 13:34:08 +02:00

27 lines
489 B
Nix

{
pkgs,
lib,
myhostname,
...
}:
{
programs.kitty = {
enable = true;
font = {
# name = "ComicShannsMono Nerd Font";
name = "FiraCode Nerd Font Mono";
size = 14;
};
shellIntegration = {
mode = "no-cursor";
};
themeFile = "Catppuccin-Mocha";
settings = {
confirm_os_window_close = 2;
cursor_shape = "block";
cursor_blink_interval = 0;
enable_audio_bell = false;
window_padding_width = 10;
};
};
}