adding syncthing dirs

This commit is contained in:
2024-10-16 18:30:23 -04:00
parent 8e846543e4
commit d174873bf5
3 changed files with 45 additions and 0 deletions

View File

@@ -5,6 +5,13 @@ in
services.syncthing = {
guiAddress = "192.168.90.40:8384";
settings.folders = {
"bob_temp" = {
path = "${vars.storage_syncthing}/bob_temp";
devices = [
"jeeves"
];
fsWatcherEnabled = true;
};
"notes" = {
id = "l62ul-lpweo"; # cspell:disable-line
path = vars.media_notes;
@@ -54,6 +61,13 @@ in
];
fsWatcherEnabled = true;
};
"rhapsody-in-green_temp" = {
path = "${vars.storage_syncthing}/projects";
devices = [
"rhapsody-in-green"
];
fsWatcherEnabled = true;
};
};
};
}