dotfiles/nixos/home-manager/programs/kitty.nix

23 lines
462 B
Nix
Raw Normal View History

2023-08-13 17:00:41 +01:00
{
config,
pkgs,
...
}: {
home.sessionVariables = {TERMINAL = "kitty";};
2020-10-15 23:09:30 +01:00
programs.kitty = {
enable = true;
2023-06-21 10:14:12 +01:00
shellIntegration.enableZshIntegration = true;
theme = "Solarized Dark";
2020-10-15 23:09:30 +01:00
settings = {
2021-06-27 08:34:18 +01:00
enable_audio_bell = false;
2023-06-22 11:59:46 +01:00
hide_window_decorations = true;
2023-06-21 10:14:12 +01:00
font_size = "12.0";
2023-06-21 09:54:10 +01:00
font_family = "BerkeleyMono Nerd Font";
2021-11-22 19:32:26 +00:00
bold_font = "auto";
italic_font = "auto";
2020-10-15 23:09:30 +01:00
bold_italic_font = "auto";
};
};
}