haccfiles/hosts/hainich/services/syncthing.nix
2021-01-27 11:13:36 +01:00

9 lines
156 B
Nix

{ config, lib, pkgs, ... }:
{
services.syncthing = {
enable = true;
relay.enable = false;
openDefaultPorts = true;
guiAddress = "127.0.0.1:8384";
};
}