From c10793cc946434cf4ec2a5ba64c75baf0fdb9edd Mon Sep 17 00:00:00 2001 From: Don Harper Date: Mon, 8 Dec 2025 23:24:32 -0600 Subject: [PATCH] home/common/mail | add imap and sig --- home/common/mail.nix | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) 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"; + }; }; };