13 lines
172 B
Nix
13 lines
172 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.syncthing = {
|
|
enable = true;
|
|
user = "syncthing";
|
|
group = "syncthing";
|
|
|
|
# webui
|
|
guiAddress = "0.0.0.0:2222";
|
|
};
|
|
}
|