Wrap kitty

This commit is contained in:
SebastianStork 2024-05-08 17:26:10 +02:00
parent f47d5711f3
commit 302a177ef2
4 changed files with 40 additions and 30 deletions

View file

@ -5,7 +5,6 @@
./shell
./ssh-client.nix
./git.nix
./kitty.nix
./equalizer
./sops.nix
];

View file

@ -1,28 +0,0 @@
{
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.85";
enable_audio_bell = false;
update_check_interval = 0;
};
theme =
{
dark = "Default";
light = "GitHub Light";
}
.${config.myConfig.de.theme};
};
};
}