nixos/services/syncthing/H0615.nix

28 lines
649 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{...}: {
imports = [
./default.nix
./devices/Ion.nix
./devices/J0162.nix
./devices/Legion.nix
./devices/Monarch.nix
./devices/Northstar.nix
./devices/Vanguard.nix
./folders/notes.nix
2023-06-09 14:00:32 +01:00
./folders/zotero.nix
];
2023-05-09 13:52:52 +01:00
services.syncthing = {
user = "elitherl";
group = "users";
dataDir = "/home/elitherl";
extraOptions.options.globalAnnounceEnabled = true;
folders."Notes" = {
path = "~/notes";
devices = ["ion" "J0162" "legion" "monarch" "northstar" "vanguard"];
};
2023-06-09 14:00:32 +01:00
folders."Zotero" = {
path = "~/Documents/Zotero";
devices = ["ion" "J0162" "legion"];
2023-06-09 14:00:32 +01:00
};
2023-05-09 13:52:52 +01:00
};
}