aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/foot.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hm/sils/foot.nix')
-rw-r--r--modules/hm/sils/foot.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/modules/hm/sils/foot.nix b/modules/hm/sils/foot.nix
deleted file mode 100644
index b6a0212..0000000
--- a/modules/hm/sils/foot.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- 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";
- # };
- #};
- };
- };
-}