From 3dfbbab0425a407e9d1fab9e147751423f21ec89 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Mon, 29 Apr 2024 20:22:35 +0200 Subject: [PATCH] Theme kitty --- modules/home/kitty.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/home/kitty.nix b/modules/home/kitty.nix index b175a4a..64fd659 100644 --- a/modules/home/kitty.nix +++ b/modules/home/kitty.nix @@ -13,10 +13,16 @@ font_family = "JetBrainsMono Nerd Font"; confirm_os_window_close = 0; background_opacity = "0.85"; - scrollback_lines = 10000; enable_audio_bell = false; update_check_interval = 0; }; + + theme = + { + dark = "Default"; + light = "Adwaita light"; + } + ."${config.myConfig.de.theme}"; }; }; }