Add syncthing config for J0162
This commit is contained in:
parent
15dbf6242f
commit
3bcba72370
27
services/syncthing/J0162.nix
Normal file
27
services/syncthing/J0162.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{...}: {
|
||||||
|
imports = [
|
||||||
|
./default.nix
|
||||||
|
./devices/H0615.nix
|
||||||
|
./devices/Ion.nix
|
||||||
|
./devices/Legion.nix
|
||||||
|
./devices/Monarch.nix
|
||||||
|
./devices/Northstar.nix
|
||||||
|
./devices/Vanguard.nix
|
||||||
|
./folders/notes.nix
|
||||||
|
./folders/zotero.nix
|
||||||
|
];
|
||||||
|
services.syncthing = {
|
||||||
|
user = "elitherl";
|
||||||
|
group = "users";
|
||||||
|
dataDir = "/home/elitherl";
|
||||||
|
extraOptions.options.globalAnnounceEnabled = true;
|
||||||
|
folders."Notes" = {
|
||||||
|
path = "~/notes";
|
||||||
|
devices = ["H0615" "ion" "legion" "monarch" "northstar" "vanguard"];
|
||||||
|
};
|
||||||
|
folders."Zotero" = {
|
||||||
|
path = "~/Documents/Zotero";
|
||||||
|
devices = ["H0615" "legion"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue