flakes/navi/laniakea/kitty.nix
2026-04-10 18:50:25 +03:00

19 lines
413 B
Nix

{
programs.kitty = {
enable = true;
settings = {
confirm_os_window_close = 0;
background_opacity = "0.9";
enable_audio_bell = false;
mouse_map = "right press ungrabbed paste_from_clipboard";
cursor_shape = "underline";
};
font = {
name = "IosevkaTerm Nerd Font";
};
themeFile = "Carbonfox";
shellIntegration.enableBashIntegration = true;
};
}