diff --git a/hosts/MaxNixosLaptop/home.nix b/hosts/MaxNixosLaptop/home.nix index 59f618b..1ab84aa 100644 --- a/hosts/MaxNixosLaptop/home.nix +++ b/hosts/MaxNixosLaptop/home.nix @@ -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 diff --git a/modules/home-manager/foot.nix b/modules/home-manager/foot.nix new file mode 100644 index 0000000..6a7e9a4 --- /dev/null +++ b/modules/home-manager/foot.nix @@ -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 + }; + }; + }; +}