diff options
Diffstat (limited to 'common/home/accounts/email.nix')
| -rw-r--r-- | common/home/accounts/email.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/common/home/accounts/email.nix b/common/home/accounts/email.nix index 2b9b6c6..fd5f02c 100644 --- a/common/home/accounts/email.nix +++ b/common/home/accounts/email.nix @@ -1,10 +1,34 @@ { ... }: { default = { + userName = "nathan@n8.uber.space"; address = "nathan@nathanreiner.xyz"; + primary = true; + realName = "Nathan Reiner"; + passwordCommand = "pass mail/nathan@nathanreiner.xyz"; + + smtp = { + host = "menkent.uberspace.de"; + port = 465; + tls = { + enable = true; + }; + }; + + imap = { + host = "menkent.uberspace.de"; + port = 993; + tls = { + enable = true; + }; + }; + + mbsync.enable = true; + msmtp.enable = true; neomutt = { enable = true; + showDefaultMailbox = true; }; }; } |