syncthing: make sure everything is green
This commit is contained in:
parent
f6d939d2e9
commit
961f4ab8f4
4 changed files with 41 additions and 13 deletions
|
@ -29,6 +29,30 @@
|
||||||
|
|
||||||
# on encrypted drive
|
# on encrypted drive
|
||||||
# ------------------
|
# ------------------
|
||||||
|
private = {
|
||||||
|
enable = true;
|
||||||
|
path = "/home/syncthing/private";
|
||||||
|
};
|
||||||
|
desktop = {
|
||||||
|
enable = true;
|
||||||
|
path = "/home/syncthing/desktop";
|
||||||
|
};
|
||||||
|
finance = {
|
||||||
|
enable = true;
|
||||||
|
path = "/home/syncthing/finance";
|
||||||
|
};
|
||||||
|
lost-fotos = {
|
||||||
|
enable = true;
|
||||||
|
path = "/home/syncthing/lost-fotos.ct";
|
||||||
|
};
|
||||||
|
fotos = {
|
||||||
|
enable = true;
|
||||||
|
path = "/home/syncthing/fotos";
|
||||||
|
};
|
||||||
|
zettlr = {
|
||||||
|
enable = true;
|
||||||
|
path = "/home/syncthing/zettlr";
|
||||||
|
};
|
||||||
|
|
||||||
# no need to be encrypted
|
# no need to be encrypted
|
||||||
# -----------------------
|
# -----------------------
|
||||||
|
@ -42,6 +66,10 @@
|
||||||
path = "/media/syncthing/movies";
|
path = "/media/syncthing/movies";
|
||||||
rescanInterval = 8 * 3600;
|
rescanInterval = 8 * 3600;
|
||||||
};
|
};
|
||||||
|
music-projects = {
|
||||||
|
enable = true;
|
||||||
|
path = "/media/syncthing/music-projects";
|
||||||
|
};
|
||||||
music-library = {
|
music-library = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/media/syncthing/music-library";
|
path = "/media/syncthing/music-library";
|
||||||
|
@ -87,6 +115,10 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
system.permown."/home/syncthing" = {
|
||||||
|
owner = "syncthing";
|
||||||
|
group = "syncthing";
|
||||||
|
};
|
||||||
system.permown."/media/syncthing" = {
|
system.permown."/media/syncthing" = {
|
||||||
owner = "syncthing";
|
owner = "syncthing";
|
||||||
group = "syncthing";
|
group = "syncthing";
|
||||||
|
|
|
@ -61,10 +61,6 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/home/palo/smartphone-folder";
|
path = "/home/palo/smartphone-folder";
|
||||||
};
|
};
|
||||||
workhorse-sterni = {
|
|
||||||
enable = true;
|
|
||||||
path = "/home/palo/sync-to-workhorse";
|
|
||||||
};
|
|
||||||
processing = {
|
processing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/home/palo/sketchbook";
|
path = "/home/palo/sketchbook";
|
||||||
|
|
|
@ -45,10 +45,6 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/home/syncthing/lost-fotos.ct";
|
path = "/home/syncthing/lost-fotos.ct";
|
||||||
};
|
};
|
||||||
music-projects = {
|
|
||||||
enable = true;
|
|
||||||
path = "/home/syncthing/music-projects";
|
|
||||||
};
|
|
||||||
zettlr = {
|
zettlr = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/home/syncthing/zettlr";
|
path = "/home/syncthing/zettlr";
|
||||||
|
@ -85,6 +81,11 @@
|
||||||
path = "/media/syncthing/movies";
|
path = "/media/syncthing/movies";
|
||||||
rescanInterval = 8 * 3600;
|
rescanInterval = 8 * 3600;
|
||||||
};
|
};
|
||||||
|
# todo : no need to place it on encrypted drive
|
||||||
|
music-projects = {
|
||||||
|
enable = true;
|
||||||
|
path = "/home/syncthing/music-projects";
|
||||||
|
};
|
||||||
music-library = {
|
music-library = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/media/syncthing/music-library";
|
path = "/media/syncthing/music-library";
|
||||||
|
@ -110,6 +111,10 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
system.permown."/home/syncthing" = {
|
||||||
|
owner = "syncthing";
|
||||||
|
group = "syncthing";
|
||||||
|
};
|
||||||
system.permown."/media/syncthing" = {
|
system.permown."/media/syncthing" = {
|
||||||
owner = "syncthing";
|
owner = "syncthing";
|
||||||
group = "syncthing";
|
group = "syncthing";
|
||||||
|
|
|
@ -215,11 +215,6 @@ with lib; {
|
||||||
watch = false;
|
watch = false;
|
||||||
devices = [ "bumba" "workout" ];
|
devices = [ "bumba" "workout" ];
|
||||||
};
|
};
|
||||||
workhorse-sterni = {
|
|
||||||
enable = lib.mkDefault false;
|
|
||||||
devices = [ "workhorse" "sterni" ];
|
|
||||||
watch = false;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue