Remove some folders from Vanguard syncthing config

This commit is contained in:
Evie Litherland-Smith 2023-06-06 11:39:46 +01:00
parent 4a76892889
commit 1f2718b8ac

View file

@ -7,30 +7,17 @@
./devices/Monarch.nix
./devices/Northstar.nix
./devices/Remarkable.nix
./folders/archive.nix
./folders/books.nix
./folders/camera.nix
./folders/comics.nix
./folders/documents.nix
./folders/exports.nix
./folders/movies.nix
./folders/notes.nix
./folders/pictures.nix
./folders/xochitl.nix
];
services.syncthing = {
user = "xenia";
group = "users";
extraOptions.options.globalAnnounceEnabled = true;
folders = {
"Archive" = {
path = "/mnt/secondary/syncthing/archive";
devices = ["ion" "legion" "monarch" "northstar"];
};
"Books" = {
path = "/mnt/secondary/syncthing/books";
devices = ["legion" "monarch" "northstar" "remarkable"];
};
"Camera" = {
path = "~/Camera";
devices = ["ion"];
@ -39,14 +26,6 @@
path = "~/Documents/Comics";
devices = ["ion" "legion" "monarch" "northstar"];
};
"Documents" = {
path = "/mnt/secondary/syncthing/documents";
devices = ["legion" "monarch" "northstar"];
};
"Exports" = {
path = "/mnt/secondary/syncthing/exports";
devices = ["legion" "monarch"];
};
"Movies" = {
path = "~/Videos";
devices = ["ion" "legion" "monarch" "northstar"];
@ -59,10 +38,6 @@
path = "~/Pictures";
devices = ["ion" "legion" "monarch" "northstar"];
};
"Xochitl" = {
path = "/mnt/secondary/syncthing/xochitl";
devices = ["remarkable"];
};
};
};
}