Files
nixos/pkgs/kitty/default.nix
T
biscuit f7d3c7a7c4 MOCHA
2025-06-06 10:28:29 -05:00

20 lines
384 B
Nix
Executable File

{termFont, ...}: {
programs.kitty = {
enable = true;
themeFile = "Catppuccin-Mocha";
settings = {
confirm_os_window_close = 0;
window_padding_width = 10;
font_size = 12.0;
font_family = termFont;
# optimization
input_delay = 0;
repaint_delay = 2;
sync_to_monitor = false;
wayland_enable_ime = false;
};
};
}