diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-21 17:39:41 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-21 17:39:41 -0700 |
commit | 02f8fa01dc80c7207c8ef7498bf4dc2efa170c04 (patch) | |
tree | cd882763618a131bd2baf137520ffd0bc9984299 | |
parent | flake: add checks (diff) | |
download | world-02f8fa01dc80c7207c8ef7498bf4dc2efa170c04.tar.gz |
mail: fix tags for notmuch
The default tags should be unread and new, otherwise there's nothing left for `afew` to tag.
Diffstat (limited to '')
-rw-r--r-- | home/mail/accounts/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/mail/accounts/default.nix b/home/mail/accounts/default.nix index 3a9a0e4..1bc1c37 100644 --- a/home/mail/accounts/default.nix +++ b/home/mail/accounts/default.nix @@ -38,7 +38,7 @@ in { programs.notmuch = { enable = true; maildir.synchronizeFlags = true; - new.tags = [ "unread" "inbox" ]; + new.tags = [ "unread" "new" ]; new.ignore = [ "Trash" ]; search.excludeTags = [ "spam" "deleted" ]; hooks = { |