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.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/features/user/gui/apps/foot.nix b/features/user/gui/apps/foot.nix
deleted file mode 100644
index 321e7e8..0000000
--- a/features/user/gui/apps/foot.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- 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;
- settings = {
- main.pad = "0x4";
- };
- };
- };
-}