103 current 1970-01-01 01:00:00 24.05.20240303.b8697e5 6.6.19 *

This commit is contained in:
Max Känner 2024-03-08 22:51:47 +01:00
parent 1c47048cb5
commit 180fc699ef
2 changed files with 32 additions and 0 deletions

View File

@ -9,6 +9,8 @@
../../modules/home-manager/sway.nix
# zsh config
../../modules/home-manager/zsh.nix
# foot terminal emulator
../../modules/home-manager/foot.nix
];
# Home Manager needs a bit of information about you and the paths it should

View File

@ -0,0 +1,30 @@
{...}: {
programs.foot = {
enable = true;
settings = {
main = {
font = "FiraCode Nerd Font Mono:size=11";
dpi-aware = "yes";
};
colors = {
regular0 = "222222"; # black
regular1 = "cc9393"; # red
regular2 = "7f9f7f"; # green
regular3 = "d0bf8f"; # yellow
regular4 = "8cd0d3"; # blue
regular5 = "dc8cc3"; # magenta
regular6 = "93e0e3"; # cyan
regular7 = "dcdccc"; # white
bright0 = "666666"; # black
bright1 = "dca3a3"; # red
bright2 = "bfebbf"; # green
bright3 = "f0dfaf"; # yellow
bright4 = "8cd0d3"; # blue
bright5 = "fcace3"; # magenta
bright6 = "b3ffff"; # cyan
bright7 = "ffffff"; # white
};
};
};
}