nixos/services/Vanguard.nix

22 lines
561 B
Nix
Raw Normal View History

{...}: let
user = "xenia";
in {
imports = [./sshd ./syncthing];
services.syncthing = {
user = user;
group = "users";
dataDir = "/home/${user}";
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";
};
};
}