From c10793cc946434cf4ec2a5ba64c75baf0fdb9edd Mon Sep 17 00:00:00 2001 From: Don Harper Date: Mon, 8 Dec 2025 23:24:32 -0600 Subject: [PATCH 1/2] 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"; + }; }; }; From e01b35aac4d60339821abe7ff7bd363f146a0f3a Mon Sep 17 00:00:00 2001 From: Don Harper Date: Mon, 8 Dec 2025 23:26:07 -0600 Subject: [PATCH 2/2] flake.nix | nvf pin to v 0.8 --- flake.lock | 7 ++++--- flake.nix | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/flake.lock b/flake.lock index 321478e..1c61a9c 100644 --- a/flake.lock +++ b/flake.lock @@ -515,15 +515,16 @@ "systems": "systems_3" }, "locked": { - "lastModified": 1764904740, - "narHash": "sha256-TzqXUQlESmS5XGJ3tR1/xdoU0vySyp6YUUpmGF5F0kY=", + "lastModified": 1764871278, + "narHash": "sha256-ezKJwZeAtZSO9EA3aLl5bmjjAVUoLE69IC+yX/KSqDM=", "owner": "notashelf", "repo": "nvf", - "rev": "249cabe0c5392c384c82fa9d28d3f49fbeb04266", + "rev": "43b48909a3d0c96f5c3d9a9e50d6faabbeccc9dd", "type": "github" }, "original": { "owner": "notashelf", + "ref": "v0.8", "repo": "nvf", "type": "github" } diff --git a/flake.nix b/flake.nix index 7101e8c..a8df7b5 100644 --- a/flake.nix +++ b/flake.nix @@ -21,7 +21,7 @@ home-manager.inputs.nixpkgs.follows = "nixpkgs"; naviterm.url = "gitlab:detoxify92/naviterm"; nixos-hardware.url = "github:NixOS/nixos-hardware/master"; - nvf.url = "github:notashelf/nvf"; + nvf.url = "github:notashelf/nvf?ref=v0.8"; nvf.inputs.nixpkgs.follows = "nixpkgs"; };