14 lines
201 B
Nix
14 lines
201 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services.syncthing = {
|
|
enable = true;
|
|
guiAddress = "localhost:8384";
|
|
# user = "synchronous";
|
|
# group = "syncthing";
|
|
openDefaultPorts = true;
|
|
};
|
|
}
|