diff options
Diffstat (limited to 'modules/hm/sils/mail.nix')
| -rw-r--r-- | modules/hm/sils/mail.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/hm/sils/mail.nix b/modules/hm/sils/mail.nix new file mode 100644 index 0000000..77d085c --- /dev/null +++ b/modules/hm/sils/mail.nix @@ -0,0 +1,18 @@ +{ + config, + lib, + ... +}: let + cfg = config.sils.mail; +in { + options.sils.mail.enable = lib.mkOption { + type = lib.types.bool; + default = false; + description = "Enable sophisticated mail setup"; + }; + config = lib.mkIf cfg.enable { + programs.neomutt = { + enable = true; + }; + }; +} |
