diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-09 12:51:34 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-09 12:51:34 +0200 |
commit | 0a3e96a8fa0c3522807e5fd76af4d31173730d5b (patch) | |
tree | 6b76a635a9b8b6626a33fda65d37630b2b390565 /modules/common/default.nix | |
parent | .gitattributes: Remove (diff) | |
download | nixos-config-0a3e96a8fa0c3522807e5fd76af4d31173730d5b.zip |
modules/common: Don't sync the maildir
This directory is already sychronized via mbsync/isync and syncing it leads to an undefined state (e.g., duplicated ids and thus duplicated emails)
Diffstat (limited to '')
-rw-r--r-- | modules/common/default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/common/default.nix b/modules/common/default.nix index 5483b4e6..19fbd591 100644 --- a/modules/common/default.nix +++ b/modules/common/default.nix @@ -91,10 +91,13 @@ config.home-manager.users.soispha.home.file); in [ + # TODO(@bpeetz): Move these to their respective modules <2025-05-09> # Already synchronized by TaskChampion sync server "~/.local/share/task" # Already synchronized by atuin sync server "~/.local/share/atuin" + # Already synchronized by mbsync + "~/.local/share/maildir" # Should not be synchronized "~/.local/share/unison" |