stockholm/makefu/2configs/syncthing.nix
2018-09-17 01:10:36 +02:00

18 lines
363 B
Nix

{ config, ... }:
with import <stockholm/lib>; {
services.syncthing = {
enable = true;
openDefaultPorts = true;
group = "download";
};
users.extraGroups.download.gid = genid "download";
state = map (x: config.services.syncthing.dataDir + "/" + x) [
"key.pem"
"cert.pem"
"config.xml"
"https-cert.pem"
"https-key.pem"
];
}