syncthing: rescanInterval is 8 hours on media,

to avoid starting the hard drive when not needed
This commit is contained in:
Ingolf Wagner 2020-01-26 14:33:50 +13:00
parent b0eb5e5fcd
commit 5f15710bec
Signed by: palo
GPG key ID: 76BF5F1928B9618B
2 changed files with 11 additions and 0 deletions

View file

@ -45,22 +45,27 @@
movies = {
enable = true;
path = "/media/movies";
rescanInterval = 8 * 3600;
};
music-library = {
enable = true;
path = "/media/music-library";
rescanInterval = 8 * 3600;
};
podcasts = {
enable = true;
path = "/media/podcasts";
rescanInterval = 8 * 3600;
};
series = {
enable = true;
path = "/media/series";
rescanInterval = 8 * 3600;
};
smartphone-music = {
enable = true;
path = "/media/smartphone-music";
rescanInterval = 8 * 3600;
};
};
};

View file

@ -68,26 +68,32 @@
music-library-free = {
enable = true;
path = "/media/syncthing/music-library-free";
rescanInterval = 8 * 3600;
};
samples = {
enable = true;
path = "/media/syncthing/samples";
rescanInterval = 8 * 3600;
};
movies = {
enable = true;
path = "/media/syncthing/movies";
rescanInterval = 8 * 3600;
};
music-library = {
enable = true;
path = "/media/syncthing/music-library";
rescanInterval = 8 * 3600;
};
podcasts = {
enable = true;
path = "/media/syncthing/podcasts";
rescanInterval = 8 * 3600;
};
series = {
enable = true;
path = "/media/syncthing/series";
rescanInterval = 8 * 3600;
};
};