summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--home.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/home.nix b/home.nix
index 24e5920..b76dbcc 100644
--- a/home.nix
+++ b/home.nix
@@ -398,6 +398,29 @@ in {
398 }; 398 };
399 }; 399 };
400 400
401 notmuch = {
402 enable = true;
403 extraConfig.user = {
404 name = "Vineet Kumar";
405 primary_email = "me@vineetk.net";
406 other_email = "vineet@vineetk.net;***REDACTED_EMAIL***;kar@13f0.net";
407 };
408 hooks = {
409 postNew = ''
410 notmuch tag +13f0 -- tag:new and to:"*@13f0.net"
411 notmuch tag +vineetk -- tag:new and to:"*@vineetk.net"
412 notmuch tag +university -- tag:new and to:***REDACTED_EMAIL***
413 notmuch tag +openbsd_announce -inbox -- tag:new and to:announce@openbsd.org
414 notmuch tag +openbsd_arm -inbox -- tag:new and to:arm@openbsd.org
415 notmuch tag +openbsd_misc -inbox -- tag:new and to:misc@openbsd.org
416 notmuch tag +opensmtpd_misc -inbox -- tag:new and to:misc@opensmtpd.org
417 notmuch tag +oss_security -inbox -- tag:new and to:oss-security@lists.openwall.com
418 notmuch tag +tuhs -inbox -- tag:new and to:tuhs@tuhs.org
419 '';
420 preNew = "mbsync -a";
421 };
422 };
423
401 qutebrowser = { 424 qutebrowser = {
402 enable = true; 425 enable = true;
403 426