From a60ab045a890f293de120785d9abd0271a557de9 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 16 Apr 2025 06:58:28 +0100 Subject: [PATCH] Exclude `result` files when pulling changes --- hosts/PW05CH3L/modules/wiki.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/PW05CH3L/modules/wiki.nix b/hosts/PW05CH3L/modules/wiki.nix index 2e54e104..7d0b7c9a 100644 --- a/hosts/PW05CH3L/modules/wiki.nix +++ b/hosts/PW05CH3L/modules/wiki.nix @@ -18,6 +18,7 @@ with lib; text = '' ${getExe pkgs.rsync} -avz --update \ + --exclude result \ ${remoteIpAddress}:${wikiPath}/ ${wikiPath} "$@" ''; })