From a0f111900fa3820cb0655dcab003f0ec93481616 Mon Sep 17 00:00:00 2001 From: Silas Schöffel Date: Sun, 2 Jun 2024 14:05:09 +0200 Subject: foot: init module --- modules/hm/sils/foot.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 modules/hm/sils/foot.nix (limited to 'modules/hm/sils/foot.nix') diff --git a/modules/hm/sils/foot.nix b/modules/hm/sils/foot.nix new file mode 100644 index 0000000..b6a0212 --- /dev/null +++ b/modules/hm/sils/foot.nix @@ -0,0 +1,20 @@ +{ + 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"; + # }; + #}; + }; + }; +} -- cgit v1.3.1