kitty: set the TERMINAL env var by default

This commit is contained in:
Colin 2023-06-30 10:58:04 +00:00
parent e519c1c629
commit 3da58f1d41

View File

@ -1,14 +1,17 @@
{ ... }: { lib, ... }:
{ {
sane.programs.kitty.fs.".config/kitty/kitty.conf".symlink.text = '' sane.programs.kitty = {
# docs: https://sw.kovidgoyal.net/kitty/conf/ fs.".config/kitty/kitty.conf".symlink.text = ''
# disable terminal bell (when e.g. you backspace too many times) # docs: https://sw.kovidgoyal.net/kitty/conf/
enable_audio_bell no # disable terminal bell (when e.g. you backspace too many times)
enable_audio_bell no
map ctrl+n new_os_window_with_cwd map ctrl+n new_os_window_with_cwd
include ${./PaperColor_dark.conf} include ${./PaperColor_dark.conf}
''; '';
env.TERMINAL = lib.mkDefault "kitty";
};
# include ${pkgs.kitty-themes}/themes/PaperColor_dark.conf # include ${pkgs.kitty-themes}/themes/PaperColor_dark.conf