diff options
author | Ben Sima <ben@bsima.me> | 2019-08-27 14:34:49 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-08-27 14:34:49 -0700 |
commit | f3b91d75d2d3153e9fa4d7414929dcc531779727 (patch) | |
tree | c49dc426b64cec2d47dc594a1a5398244ccc4dd0 /email.nix | |
parent | 8c810428d6d93ba718df7e8388615ad7fa3d092c (diff) |
reorganize, and some small fixes
Diffstat (limited to 'email.nix')
-rw-r--r-- | email.nix | 125 |
1 files changed, 0 insertions, 125 deletions
diff --git a/email.nix b/email.nix deleted file mode 100644 index bde8fe9..0000000 --- a/email.nix +++ /dev/null @@ -1,125 +0,0 @@ -{ pkgs, ... }: - -let - homedir = builtins.getEnv "HOME"; - gpgid = "D09299626FA78AF8"; -in -{ - accounts = { - email = { - maildirBasePath = "${homedir}/Mail"; - accounts = { - "ben@bsima.me" = { - primary = true; - realName = "Ben Sima"; - address = "ben@bsima.me"; - userName = "ben@simatime.com"; - alot.sendMailCommand = "${homedir}/bin/sendmail"; - folders = { - inbox = "INBOX"; - }; - imap = { - host = "simatime.com"; - port = 993; - }; - smtp = { - host = "simatime.com"; - port = 587; - tls = { - enable = true; - useStartTls = true; - }; - }; - gpg = { - key = gpgid; - signByDefault = true; - encryptByDefault = false; - }; - mbsync = { - enable = true; - create = "both"; - expunge = "none"; - }; - notmuch.enable = true; - msmtp.enable = true; - passwordCommand = "cat ~/keybase/private/bsima/ben@bsima.me"; - }; - - "ben@simatime.com" = { - realName = "Ben Sima"; - address = "ben@simatime.com"; - userName = "ben@simatime.com"; - imap = { - host = "simatime.com"; - port = 993; - }; - smtp = { - host = "simatime.com"; - port = 587; - tls = { - enable = true; - useStartTls = true; - }; - - }; - mbsync = { - enable = true; - create = "both"; - expunge = "none"; - }; - notmuch.enable = true; - passwordCommand = "cat ~/keybase/private/bsima/ben@simatime.com"; - msmtp.enable = true; - }; - - #"ben.sima@heroprojects.io" = { - # flavor = "gmail.com"; - # realName = "Ben Sima"; - # address = "ben.sima@heroprojects.io"; - # userName = "ben.sima@heroprojects.io"; - # mbsync = { - # enable = true; - # create = "both"; - # expunge = "none"; - # }; - # notmuch.enable = true; - # msmtp.enable = true; - # passwordCommand = "pass work/hero/gmail"; - #}; - }; - }; - }; - - programs = { - notmuch = { - enable = true; - new.tags = [ "new" ]; - hooks = {}; - extraConfig = { - search = { - exclude_tags = "deleted;spam;"; - }; - }; - }; - - afew = { - enable = true; - extraConfig = builtins.readFile ./afew.ini; - }; - - alot = { - enable = true; - extraConfig = '' - theme = solarized_light - ''; - }; - - mbsync = { - enable = true; - }; - - msmtp = { - enable = true; - }; - }; -} |