about summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-04-28 11:13:58 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-04-28 11:13:58 +0200
commit67c39c32c1d6c1f438c0939d00b26411b7d174cd (patch)
treef88a49b85d1c65eac1fbb41db48fc0a579894318 /modules
parentmodules/taskwarrior: Enable synchronization again (diff)
downloadnixos-config-67c39c32c1d6c1f438c0939d00b26411b7d174cd.zip
modules/common/unison: Ignore `~/.local/share/{Steam,atuin}`
Diffstat (limited to 'modules')
-rw-r--r--modules/common/default.nix7
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;