diff options
| author | Silas Schöffel <sils@sils.li> | 2024-06-02 14:05:09 +0200 |
|---|---|---|
| committer | Silas Schöffel <sils@sils.li> | 2024-06-02 14:05:09 +0200 |
| commit | a0f111900fa3820cb0655dcab003f0ec93481616 (patch) | |
| tree | 47ba638f76f689892365f02a948924409cf9fb0f /modules/hm/sils/foot.nix | |
| parent | flameshot: delete (diff) | |
| download | nix-config-a0f111900fa3820cb0655dcab003f0ec93481616.zip | |
foot: init module
Diffstat (limited to 'modules/hm/sils/foot.nix')
| -rw-r--r-- | modules/hm/sils/foot.nix | 20 |
1 files changed, 20 insertions, 0 deletions
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"; + # }; + #}; + }; + }; +} |
