diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-18 20:28:16 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-18 20:28:16 +0200 |
| commit | ac81632176a3e089c435de57665cccc0aa85a54f (patch) | |
| tree | 1a14f6865e4eb8ca832feddc1264e4f9d4dab2dd /common/home/accounts | |
| parent | 71892be087e11e81ee3ad0579bf0ad4cdbf3bb21 (diff) | |
configure neomut sync
Diffstat (limited to 'common/home/accounts')
| -rw-r--r-- | common/home/accounts/email.nix | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/common/home/accounts/email.nix b/common/home/accounts/email.nix index fd5f02c..da9be05 100644 --- a/common/home/accounts/email.nix +++ b/common/home/accounts/email.nix @@ -1,12 +1,19 @@ { ... }: { - default = { + uberspace = { userName = "nathan@n8.uber.space"; address = "nathan@nathanreiner.xyz"; primary = true; realName = "Nathan Reiner"; passwordCommand = "pass mail/nathan@nathanreiner.xyz"; + folders = { + drafts = "Drafts"; + inbox = "INBOX"; + sent = "Sent"; + trash = "Trash"; + }; + smtp = { host = "menkent.uberspace.de"; port = 465; |