chore(flake): update inputs

This commit is contained in:
Felix Schröter 2021-08-04 21:34:13 +02:00
parent 9791074aec
commit 476d19ccf9
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58
3 changed files with 79 additions and 86 deletions

View file

@ -12,36 +12,32 @@ in {
user = "felschr";
configDir = "/home/felschr/.config/syncthing";
dataDir = "/home/felschr/.local/share/syncthing";
declarative = {
cert = "/etc/nixos/secrets/syncthing/cert.pem";
key = "/etc/nixos/secrets/syncthing/key.pem";
devices = {
rpi4 = {
id =
"RBKVWQQ-TGYBMQK-P4AADKE-7LGPHL7-UY4FEZA-6N7HQ4R-UCPSZPV-LWFK4AP";
};
pixel3 = {
id =
"YM26ZEC-V5QQTOI-7U355KQ-WTHLL3X-H3YVJR5-4UPM5SS-YXWGVGA-EBWZEQP";
};
cert = "/etc/nixos/secrets/syncthing/cert.pem";
key = "/etc/nixos/secrets/syncthing/key.pem";
devices = {
rpi4 = {
id = "RBKVWQQ-TGYBMQK-P4AADKE-7LGPHL7-UY4FEZA-6N7HQ4R-UCPSZPV-LWFK4AP";
};
folders = {
"Default" = {
id = "default";
path = "/home/felschr/sync/default";
devices = [ "rpi4" "pixel3" ];
};
"Backups" = {
id = "backups";
path = "/home/felschr/sync/backups";
devices = [ "rpi4" ];
};
"Media" = {
id = "media";
path = "/run/media/felschr/HDD/Media";
devices = [ "rpi4" ];
inherit versioning;
};
pixel3 = {
id = "YM26ZEC-V5QQTOI-7U355KQ-WTHLL3X-H3YVJR5-4UPM5SS-YXWGVGA-EBWZEQP";
};
};
folders = {
"Default" = {
id = "default";
path = "/home/felschr/sync/default";
devices = [ "rpi4" "pixel3" ];
};
"Backups" = {
id = "backups";
path = "/home/felschr/sync/backups";
devices = [ "rpi4" ];
};
"Media" = {
id = "media";
path = "/run/media/felschr/SSD/Media";
devices = [ "rpi4" ];
inherit versioning;
};
};
};