10 lines
156 B
Nix
10 lines
156 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
{
|
||
|
services.syncthing = {
|
||
|
enable = true;
|
||
|
relay.enable = false;
|
||
|
openDefaultPorts = true;
|
||
|
guiAddress = "127.0.0.1:8384";
|
||
|
};
|
||
|
}
|