20 lines
532 B
Nix
20 lines
532 B
Nix
{...}: {
|
|
imports = [./default.nix];
|
|
services.syncthing = {
|
|
user = "xenia";
|
|
group = "users";
|
|
dataDir = "/home/xenia";
|
|
folders = {
|
|
"Archive".path = "~/Documents/Archive";
|
|
"Books".path = "~/Documents/Books";
|
|
"Comics".path = "~/Documents/Comics";
|
|
"Documents".path = "~/Documents/Sync";
|
|
"Exports".path = "~/Documents/Exports";
|
|
"Notes".path = "~/notes";
|
|
"Pictures".path = "~/Pictures";
|
|
"Xochitl".enable = false;
|
|
"Zotero".path = "~/Documents/Zotero";
|
|
};
|
|
};
|
|
}
|