Merge branch 'master' of ssh://git.ingolf-wagner.de:443/palo/nixos-config
This commit is contained in:
commit
99fd873cb8
5 changed files with 27 additions and 6 deletions
|
@ -19,10 +19,14 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/var/lib/syncthing/finance";
|
path = "/var/lib/syncthing/finance";
|
||||||
versioning = {
|
versioning = {
|
||||||
enable = true;
|
type = "simple";
|
||||||
keep = 10;
|
params.keep = "10";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
fotos = {
|
||||||
|
enable = true;
|
||||||
|
path = "/var/lib/syncthing/fotos";
|
||||||
|
};
|
||||||
lost-fotos = {
|
lost-fotos = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/var/lib/syncthing/lost-fotos.ct";
|
path = "/var/lib/syncthing/lost-fotos.ct";
|
||||||
|
|
|
@ -27,6 +27,10 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/home/palo/.lost-fotos.ct";
|
path = "/home/palo/.lost-fotos.ct";
|
||||||
};
|
};
|
||||||
|
fotos = {
|
||||||
|
enable = true;
|
||||||
|
path = "/home/palo/fotos";
|
||||||
|
};
|
||||||
samples = {
|
samples = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/home/palo/samples";
|
path = "/home/palo/samples";
|
||||||
|
|
|
@ -25,10 +25,14 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/home/syncthing/finance";
|
path = "/home/syncthing/finance";
|
||||||
versioning = {
|
versioning = {
|
||||||
enable = true;
|
type = "simple";
|
||||||
keep = 10;
|
params.keep = "10";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
fotos = {
|
||||||
|
enable = true;
|
||||||
|
path = "/home/syncthing/fotos";
|
||||||
|
};
|
||||||
lost-fotos = {
|
lost-fotos = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/home/syncthing/lost-fotos.ct";
|
path = "/home/syncthing/lost-fotos.ct";
|
||||||
|
|
|
@ -24,14 +24,18 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/home/palo/finance";
|
path = "/home/palo/finance";
|
||||||
versioning = {
|
versioning = {
|
||||||
enable = true;
|
type = "simple";
|
||||||
keep = 10;
|
params.keep = "10";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
lost-fotos = {
|
lost-fotos = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "/home/palo/.lost-fotos.ct";
|
path = "/home/palo/.lost-fotos.ct";
|
||||||
};
|
};
|
||||||
|
fotos = {
|
||||||
|
enable = true;
|
||||||
|
path = "/home/palo/fotos";
|
||||||
|
};
|
||||||
|
|
||||||
# no need to be encrypted
|
# no need to be encrypted
|
||||||
# -----------------------
|
# -----------------------
|
||||||
|
|
|
@ -57,6 +57,11 @@ with lib;
|
||||||
watch = false;
|
watch = false;
|
||||||
devices = [ "workout" "workhorse" "pepe" "sterni" "porani" ];
|
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
|
# no need to be stored on encrypted drives
|
||||||
# ----------------------------------------
|
# ----------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue