fix syncthing errors

main
Ingolf Wagner 2024-04-25 11:44:15 +02:00
parent e163d452d9
commit db3634eb5e
Signed by: palo
GPG Key ID: 76BF5F1928B9618B
1 changed files with 3 additions and 5 deletions

View File

@ -7,11 +7,6 @@
group = "media"; group = "media";
# make some folders send only # make some folders send only
settings.folders = { settings.folders = {
audiobooks.type = "sendonly";
lost-fotos.type = "sendonly";
lectures.type = "sendonly";
};
folders = {
# on encrypted drive # on encrypted drive
# ------------------ # ------------------
oscar_cpap = { oscar_cpap = {
@ -52,6 +47,7 @@
}; };
lost-fotos = { lost-fotos = {
enable = true; enable = true;
type = "sendonly";
path = "/syncthing/lost-fotos.ct"; path = "/syncthing/lost-fotos.ct";
}; };
music-projects = { music-projects = {
@ -60,10 +56,12 @@
}; };
audiobooks = { audiobooks = {
enable = true; enable = true;
type = "sendonly";
path = "/media/audio-books"; path = "/media/audio-books";
}; };
lectures = { lectures = {
enable = true; enable = true;
type = "sendonly";
path = "/media/lectures"; path = "/media/lectures";
}; };
}; };