syncthing: add sync folder between sterni and workhorse

This commit is contained in:
Ingolf Wagner 2020-03-20 00:26:00 +08:00
parent b937e52715
commit 6110b5b024
Signed by: palo
GPG key ID: 76BF5F1928B9618B
3 changed files with 15 additions and 1 deletions

View file

@ -57,6 +57,10 @@
enable = true;
path = "/home/palo/smartphone-folder";
};
workhorse-sterni = {
enable = true;
path = "/home/palo/sync-to-workhorse";
};
};
};

View file

@ -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;
};
};
};

View file

@ -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;
};
};
};