summaryrefslogtreecommitdiff
path: root/features/user/gui/apps/foot.nix
diff options
context:
space:
mode:
Diffstat (limited to 'features/user/gui/apps/foot.nix')
-rw-r--r--features/user/gui/apps/foot.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/features/user/gui/apps/foot.nix b/features/user/gui/apps/foot.nix
new file mode 100644
index 0000000..d099e16
--- /dev/null
+++ b/features/user/gui/apps/foot.nix
@@ -0,0 +1,14 @@
+{ config, pkgs, lib, ... }: let
+ cfg = config.features.gui.apps.foot;
+in {
+ options.features.gui.apps.foot.enable = lib.mkEnableOption "foot";
+ config = lib.mkIf cfg.enable {
+ programs.foot = {
+ enable = true;
+ server.enable = true;
+ settings = {
+ main.pad = "0x4";
+ };
+ };
+ };
+}