13 lines
166 B
Nix
13 lines
166 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services.syncthing = {
|
|
enable = true;
|
|
# user = "synchronous";
|
|
# group = "syncthing";
|
|
openDefaultPorts = true;
|
|
};
|
|
}
|