diff --git a/home.nix b/home.nix index 5620d20..8adbc15 100644 --- a/home.nix +++ b/home.nix @@ -2,6 +2,7 @@ { home = { packages = with pkgs; [ + # Version Control git jujutsu ]; @@ -26,4 +27,10 @@ }; }; }; + + xdg.configFile = { + # Add kitty manually since there is an error with running it after installed with homemanager. + "kitty/Tomorrow_Night_Eighties.conf".source = ./kitty/Tomorrow_Night_Eighties.conf; + "kitty/kitty.conf".source = ./kitty/kitty.conf; + }; } diff --git a/kitty/Tomorrow_Night_Eighties.conf b/kitty/Tomorrow_Night_Eighties.conf new file mode 100644 index 0000000..404efc7 --- /dev/null +++ b/kitty/Tomorrow_Night_Eighties.conf @@ -0,0 +1,21 @@ +background #2c2c2c +foreground #cccccc +cursor #cccccc +selection_background #505050 +color0 #000000 +color8 #000000 +color1 #f17779 +color9 #f17779 +color2 #99cc99 +color10 #99cc99 +color3 #ffcc66 +color11 #ffcc66 +color4 #6699cc +color12 #6699cc +color5 #cc99cc +color13 #cc99cc +color6 #66cccc +color14 #66cccc +color7 #fffefe +color15 #fffefe +selection_foreground #2c2c2c diff --git a/kitty/kitty.conf b/kitty/kitty.conf new file mode 100644 index 0000000..29a38b1 --- /dev/null +++ b/kitty/kitty.conf @@ -0,0 +1,5 @@ +font_family Source Code Pro + +include ./Tomorrow_Night_Eighties.conf + +shell /usr/bin/zsh