diff --git a/nixos/machines/pepe/syncthing.nix b/nixos/machines/pepe/syncthing.nix index 24395a5..3f77dc3 100644 --- a/nixos/machines/pepe/syncthing.nix +++ b/nixos/machines/pepe/syncthing.nix @@ -43,6 +43,10 @@ enable = true; path = "/home/syncthing/private"; }; + art = { + enable = true; + path = "/home/syncthing/art"; + }; password-store = { enable = true; path = "/home/syncthing/password-store"; diff --git a/nixos/machines/sterni/syncthing.nix b/nixos/machines/sterni/syncthing.nix index 2a4c183..6b4267c 100644 --- a/nixos/machines/sterni/syncthing.nix +++ b/nixos/machines/sterni/syncthing.nix @@ -24,6 +24,10 @@ enable = true; path = "/home/palo/private"; }; + art = { + enable = true; + path = "/home/palo/art"; + }; desktop = { enable = true; path = "/home/palo/desktop"; diff --git a/nixos/system/all/syncthing.nix b/nixos/system/all/syncthing.nix index f6d34c8..3a31e84 100644 --- a/nixos/system/all/syncthing.nix +++ b/nixos/system/all/syncthing.nix @@ -54,6 +54,15 @@ with lib; { params.keep = "10"; }; }; + art = { + enable = lib.mkDefault false; + watch = lib.mkDefault false; + devices = [ "pepe" "sterni" "bumba" ]; + versioning = { + type = "simple"; + params.keep = "2"; + }; + }; password-store = { enable = lib.mkDefault false; watch = lib.mkDefault false; diff --git a/nixos/system/desktop/home-manager.nix b/nixos/system/desktop/home-manager.nix index 8ac4431..88404c0 100644 --- a/nixos/system/desktop/home-manager.nix +++ b/nixos/system/desktop/home-manager.nix @@ -201,7 +201,7 @@ in key = "42AC51C9482D0834CF488AF1389EC2D64AC71EAC"; signByDefault = true; }; - ignores = [ "*.swp" "*~" ".idea" ".*penis.*" ]; + ignores = [ "*.swp" "*~" ".idea" ".*penis.*" "result" ]; extraConfig = { init.defaultBranch = "main"; pull.ff = "only";