From 180fc699ef505d4976aa5475add057a959b2f2c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20K=C3=A4nner?= Date: Fri, 8 Mar 2024 22:51:47 +0100 Subject: [PATCH] 103 current 1970-01-01 01:00:00 24.05.20240303.b8697e5 6.6.19 * --- hosts/MaxNixosLaptop/home.nix | 2 ++ modules/home-manager/foot.nix | 30 ++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 modules/home-manager/foot.nix 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 + }; + }; + }; +}