diff --git a/configs/sterni/syncthing.nix b/configs/sterni/syncthing.nix index 9ddfb83..f0e7508 100644 --- a/configs/sterni/syncthing.nix +++ b/configs/sterni/syncthing.nix @@ -57,6 +57,10 @@ enable = true; path = "/home/palo/smartphone-folder"; }; + workhorse-sterni = { + enable = true; + path = "/home/palo/sync-to-workhorse"; + }; }; }; diff --git a/configs/workhorse/syncthing.nix b/configs/workhorse/syncthing.nix index 5e076c4..095cc24 100644 --- a/configs/workhorse/syncthing.nix +++ b/configs/workhorse/syncthing.nix @@ -106,6 +106,11 @@ path = "/media/syncthing/smartphone-folder"; rescanInterval = 8 * 3600; }; + workhorse-sterni = { + enable = true; + path = "/media/syncthing/sync-to-sterni"; + rescanInterval = 8 * 3600; + }; }; }; diff --git a/system/all/syncthing.nix b/system/all/syncthing.nix index 83d9300..01a85f2 100644 --- a/system/all/syncthing.nix +++ b/system/all/syncthing.nix @@ -88,7 +88,7 @@ with lib; { lost-fotos = { enable = lib.mkDefault false; watch = false; - devices = [ "workout" "workhorse" "sterni" ]; + devices = [ "workout" "workhorse" ]; }; movies = { enable = lib.mkDefault false; @@ -160,6 +160,11 @@ with lib; { devices = [ "pepe" "workout" ]; watch = false; }; + workhorse-sterni = { + enable = lib.mkDefault false; + devices = [ "workhorse" "sterni" ]; + watch = false; + }; }; };