mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 19:51:34 +01:00
22 lines
538 B
Nix
22 lines
538 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
options.myConfig.kitty.enable = lib.mkEnableOption "";
|
|
|
|
config = lib.mkIf config.myConfig.kitty.enable {
|
|
programs.kitty = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
font_family = "JetBrainsMono Nerd Font";
|
|
confirm_os_window_close = 0;
|
|
background_opacity = "0.7";
|
|
scrollback_lines = 10000;
|
|
enable_audio_bell = false;
|
|
update_check_interval = 0;
|
|
};
|
|
};
|
|
};
|
|
}
|