Commit 9718b67

HPCesia <me@hpcesia.com>
2025-10-21 08:15:16
feat: add foot
1 parent f337944
Changed files (2)
modules
desktop
modules/desktop/apps/terminal/default.nix
@@ -17,6 +17,7 @@
   };
   flake.modules.homeManager.desktop = _: {
     imports = with config.flake.modules.homeManager; [
+      terminal-foot
       terminal-ghostty
       # terminal-wezterm
     ];
modules/desktop/apps/terminal/foot.nix
@@ -0,0 +1,13 @@
+{
+  flake.modules.homeManager.terminal-foot = _: {
+    programs.foot = {
+      enable = true;
+      settings = {
+        main = {
+          shell = "fish";
+          pad = "10x10";
+        };
+      };
+    };
+  };
+}