syncthing: configured versioning everywhere
This commit is contained in:
parent
32a5e00141
commit
c9b2f41596
5 changed files with 27 additions and 6 deletions
|
@ -19,10 +19,14 @@
|
|||
enable = true;
|
||||
path = "/var/lib/syncthing/finance";
|
||||
versioning = {
|
||||
enable = true;
|
||||
keep = 10;
|
||||
type = "simple";
|
||||
params.keep = "10";
|
||||
};
|
||||
};
|
||||
fotos = {
|
||||
enable = true;
|
||||
path = "/var/lib/syncthing/fotos";
|
||||
};
|
||||
lost-fotos = {
|
||||
enable = true;
|
||||
path = "/var/lib/syncthing/lost-fotos.ct";
|
||||
|
|
|
@ -27,6 +27,10 @@
|
|||
enable = true;
|
||||
path = "/home/palo/.lost-fotos.ct";
|
||||
};
|
||||
fotos = {
|
||||
enable = true;
|
||||
path = "/home/palo/fotos";
|
||||
};
|
||||
samples = {
|
||||
enable = true;
|
||||
path = "/home/palo/samples";
|
||||
|
|
|
@ -25,10 +25,14 @@
|
|||
enable = true;
|
||||
path = "/home/syncthing/finance";
|
||||
versioning = {
|
||||
enable = true;
|
||||
keep = 10;
|
||||
type = "simple";
|
||||
params.keep = "10";
|
||||
};
|
||||
};
|
||||
fotos = {
|
||||
enable = true;
|
||||
path = "/home/syncthing/fotos";
|
||||
};
|
||||
lost-fotos = {
|
||||
enable = true;
|
||||
path = "/home/syncthing/lost-fotos.ct";
|
||||
|
|
|
@ -24,14 +24,18 @@
|
|||
enable = true;
|
||||
path = "/home/palo/finance";
|
||||
versioning = {
|
||||
enable = true;
|
||||
keep = 10;
|
||||
type = "simple";
|
||||
params.keep = "10";
|
||||
};
|
||||
};
|
||||
lost-fotos = {
|
||||
enable = true;
|
||||
path = "/home/palo/.lost-fotos.ct";
|
||||
};
|
||||
fotos = {
|
||||
enable = true;
|
||||
path = "/home/palo/fotos";
|
||||
};
|
||||
|
||||
# no need to be encrypted
|
||||
# -----------------------
|
||||
|
|
|
@ -57,6 +57,11 @@ with lib;
|
|||
watch = false;
|
||||
devices = [ "workout" "workhorse" "pepe" "sterni" "porani" ];
|
||||
};
|
||||
fotos = {
|
||||
enable = lib.mkDefault false;
|
||||
watch = false;
|
||||
devices = [ "workout" "workhorse" "pepe" "sterni" "porani" ];
|
||||
};
|
||||
|
||||
# no need to be stored on encrypted drives
|
||||
# ----------------------------------------
|
||||
|
|
Loading…
Reference in a new issue