mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
28 lines
684 B
Nix
28 lines
684 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.85";
|
|
enable_audio_bell = false;
|
|
update_check_interval = 0;
|
|
};
|
|
|
|
theme =
|
|
{
|
|
dark = "Default";
|
|
light = "GitHub Light";
|
|
}
|
|
."${config.myConfig.de.theme}";
|
|
};
|
|
};
|
|
}
|