diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/home.nix | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/home/home.nix b/home/home.nix index 4515720..73f4935 100644 --- a/home/home.nix +++ b/home/home.nix @@ -33,7 +33,21 @@ realName = "stuebinm"; smtp.host = "mail.hacc.space"; userName = "stuebinm@hacc.space"; - passwordCommand = "cat ~/mailpasswd"; + passwordCommand = "secret-tool lookup mail hacc"; + }; + accounts.disroot = { + address = "stuebinm@disroot.org"; + imap.host = "disroot.org"; + mbsync = { + enable = true; + create = "maildir"; + }; + msmtp.enable = true; + mu.enable = true; + realName = "terru"; + smtp.host = "disroot.org"; + userName = "stuebinm@disroot.org"; + passwordCommand = "secret-tool lookup mail disroot"; }; }; |