Commit 9718b67
Changed files (2)
modules
desktop
apps
terminal
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";
+ };
+ };
+ };
+ };
+}