summary refs log tree commit diff stats
path: root/modules/hm
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2024-06-02 14:05:09 +0200
committerSilas Schöffel <sils@sils.li>2024-06-02 14:05:09 +0200
commita0f111900fa3820cb0655dcab003f0ec93481616 (patch)
tree47ba638f76f689892365f02a948924409cf9fb0f /modules/hm
parentflameshot: delete (diff)
downloadnix-config-a0f111900fa3820cb0655dcab003f0ec93481616.tar.gz
nix-config-a0f111900fa3820cb0655dcab003f0ec93481616.zip
foot: init module
Diffstat (limited to 'modules/hm')
-rw-r--r--modules/hm/sils/default.nix1
-rw-r--r--modules/hm/sils/foot.nix20
2 files changed, 21 insertions, 0 deletions
diff --git a/modules/hm/sils/default.nix b/modules/hm/sils/default.nix
index fba63bc..8fbf363 100644
--- a/modules/hm/sils/default.nix
+++ b/modules/hm/sils/default.nix
@@ -4,6 +4,7 @@
     ./direnv.nix
     ./etesync-dav.nix
     ./firefox
+    ./foot.nix
     ./jameica.nix
     ./kdeconnect.nix
     ./mail.nix
diff --git a/modules/hm/sils/foot.nix b/modules/hm/sils/foot.nix
new file mode 100644
index 0000000..b6a0212
--- /dev/null
+++ b/modules/hm/sils/foot.nix
@@ -0,0 +1,20 @@
+{
+  config,
+  lib,
+  ...
+}: let
+  cfg = config.sils.foot;
+in {
+  options.sils.foot.enable = lib.mkEnableOption "the foot terminal emulator";
+  config = lib.mkIf cfg.enable {
+    programs.foot = {
+      enable = true;
+      #settings = {
+      #  colors = {
+      #    background = "e8ead7";
+      #    foreground = "242424";
+      #  };
+      #};
+    };
+  };
+}