nixos-config/modules/home/kitty/default.nix

21 lines
374 B
Nix
Raw Normal View History

2023-11-06 18:33:34 +01:00
{ pkgs, ... }:
{
programs.kitty = {
enable = true;
theme = "Catppuccin-Mocha";
font = {
name = "JetBrainsMono Nerd Font";
size = 13;
};
settings = {
2023-11-06 21:43:46 +01:00
confirm_os_window_close = 0;
2023-11-06 18:33:34 +01:00
background_opacity = "0.55";
2023-11-06 21:54:14 +01:00
window_padding_width = 10;
2023-11-06 18:33:34 +01:00
scrollback_lines = 10000;
enable_audio_bell = false;
};
};
}