Files
nix-config/system/services/syncthing/default.nix

13 lines
166 B
Nix

{
config,
pkgs,
...
}: {
services.syncthing = {
enable = true;
# user = "synchronous";
# group = "syncthing";
openDefaultPorts = true;
};
}