Move kitty config to home-manager.
This commit is contained in:
parent
2613507a79
commit
2d5a268cfd
7
home.nix
7
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;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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
|
|
@ -0,0 +1,5 @@
|
|||
font_family Source Code Pro
|
||||
|
||||
include ./Tomorrow_Night_Eighties.conf
|
||||
|
||||
shell /usr/bin/zsh
|
Loading…
Reference in New Issue