summaryrefslogtreecommitdiff
path: root/modules/mail.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mail.nix')
-rw-r--r--modules/mail.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/mail.nix b/modules/mail.nix
new file mode 100644
index 0000000..01538f8
--- /dev/null
+++ b/modules/mail.nix
@@ -0,0 +1,7 @@
+{ pkgs, ... }: {
+ environment.systemPackages = with pkgs; [
+ neomutt
+ ];
+
+ programs.msmtp.enable = true;
+}