From 10a1eafca4f6598ff6a2c7321ceb090678563e91 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Sat, 7 Feb 2026 21:47:16 +0100 Subject: [PATCH] syncthing: Disable zsh history syncing --- modules/system/services/syncthing.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/modules/system/services/syncthing.nix b/modules/system/services/syncthing.nix index bde588f..c9320cd 100644 --- a/modules/system/services/syncthing.nix +++ b/modules/system/services/syncthing.nix @@ -44,7 +44,6 @@ in "Pictures" "Projects" "Videos" - ".local/share/zsh" ]; }; }; @@ -135,10 +134,7 @@ in restic.backups.syncthing = lib.mkIf cfg.doBackups { conflictingService = "syncthing.service"; paths = [ dataDir ]; - extraConfig.exclude = [ - "${dataDir}/Downloads" - "${dataDir}/.local/share/zsh" - ]; + extraConfig.exclude = [ "${dataDir}/Downloads" ]; }; };