nixos/services/syncthing/Vanguard.nix

20 lines
532 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{...}: {
imports = [./default.nix];
services.syncthing = {
user = "xenia";
group = "users";
2023-06-27 07:42:27 +01:00
dataDir = "/home/xenia";
2023-05-25 08:48:58 +01:00
folders = {
"Archive".path = "~/Documents/Archive";
"Books".path = "~/Documents/Books";
2023-06-27 07:38:02 +01:00
"Comics".path = "~/Documents/Comics";
"Documents".path = "~/Documents/Sync";
"Exports".path = "~/Documents/Exports";
2023-06-27 07:38:02 +01:00
"Notes".path = "~/notes";
"Pictures".path = "~/Pictures";
"Xochitl".enable = false;
"Zotero".path = "~/Documents/Zotero";
};
};
}