nixos-config/home/kitty.nix

23 lines
446 B
Nix
Raw Normal View History

2021-08-16 17:38:38 +00:00
{ pkgs, ... }:
{
programs.kitty = {
enable = true;
font = {
package = pkgs.fira-code;
name = "FiraCode Nerd Font";
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;
};
};
}