nixos-config/home/kitty.nix

22 lines
399 B
Nix
Raw Normal View History

2023-09-10 01:26:43 +00:00
{ ... }:
2021-08-16 17:38:38 +00:00
{
programs.kitty = {
enable = true;
font = {
2023-09-10 01:26:43 +00:00
name = "Fira Code";
2021-08-16 17:38:38 +00:00
size = 9;
};
settings = {
update_check_interval = 0;
close_on_child_death = true;
2023-03-08 05:04:02 +00:00
confirm_os_window_close = 2;
2021-08-16 17:38:38 +00:00
enable_audio_bell = 0;
term = "kitty";
clipboard_control = false;
scrollback_lines = 32768;
touch_scroll_multiplier = 4;
};
};
}