diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-28 11:13:58 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-28 11:13:58 +0200 |
commit | 67c39c32c1d6c1f438c0939d00b26411b7d174cd (patch) | |
tree | f88a49b85d1c65eac1fbb41db48fc0a579894318 | |
parent | modules/taskwarrior: Enable synchronization again (diff) | |
download | nixos-config-67c39c32c1d6c1f438c0939d00b26411b7d174cd.zip |
modules/common/unison: Ignore `~/.local/share/{Steam,atuin}` prime
-rw-r--r-- | modules/common/default.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/common/default.nix b/modules/common/default.nix index ff948a0f..393979d1 100644 --- a/modules/common/default.nix +++ b/modules/common/default.nix @@ -82,14 +82,17 @@ config.home-manager.users.soispha.home.file); in [ - # already synchronized by the taskserver + # Already synchronized by TaskChampion sync server "~/.local/share/task" + # Already synchronized by atuin sync server + "~/.local/share/atuin" # Should not be synchronized "~/.local/share/unison" - # Is just to big to be synchronized (# TODO: Work around that <2024-08-31> ) + # These are just to big to be synchronized (# TODO: Work around that <2024-08-31> ) "~/media/music" + "~/.local/share/Steam" ] ++ homeManagerSymlinks; |