diff options
author | Ben Sima <ben@bsima.me> | 2019-08-27 15:13:55 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-08-27 15:13:55 -0700 |
commit | db6d02e3a42d4264883a82d8f11a49848b77bd7f (patch) | |
tree | 83caac3c624f2fca7fb6d7e3bedc127fbd0528a3 /lib/email.nix | |
parent | 9489a7b13e74bddcca14f90c4041d007fbeb5961 (diff) |
undo remove homedir
Diffstat (limited to 'lib/email.nix')
-rw-r--r-- | lib/email.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/email.nix b/lib/email.nix index 811d739..a1a416e 100644 --- a/lib/email.nix +++ b/lib/email.nix @@ -2,18 +2,19 @@ let gpgid = "D09299626FA78AF8"; + homedir = builtins.getEnv "HOME"; in { accounts = { email = { - maildirBasePath = "\$HOME/Mail"; + maildirBasePath = "${homedir}/Mail"; accounts = { "ben@bsima.me" = { primary = true; realName = "Ben Sima"; address = "ben@bsima.me"; userName = "ben@simatime.com"; - alot.sendMailCommand = "\$HOME/bin/sendmail"; + alot.sendMailCommand = "${homedir}/bin/sendmail"; folders = { inbox = "INBOX"; }; |