diff --git a/home/common/mail.nix b/home/common/mail.nix index 930a8f3..6bb3c44 100644 --- a/home/common/mail.nix +++ b/home/common/mail.nix @@ -4,13 +4,23 @@ ... }: { accounts.email.accounts = { - "don@donharper.org" = { + gmail = { primary = true; realName = "Don Harper"; userName = "don"; address = "don@donharper.org"; - #secondaries = [ "duck@duckland.org" "duckunix@gmail.com" ]; + # secondaries = ["duck@duckland.org" "duckunix@gmail.com"]; notmuch.enable = true; + imap = { + host = "imap.gmail.com"; + authentication = "login"; + }; + signature = { + text = '' + Don Harper + ''; + showSignature = "append"; + }; }; };