haccfiles/hosts/hainich/services/syncthing.nix

10 lines
156 B
Nix
Raw Normal View History

2021-01-27 10:13:36 +00:00
{ config, lib, pkgs, ... }:
{
services.syncthing = {
enable = true;
relay.enable = false;
openDefaultPorts = true;
guiAddress = "127.0.0.1:8384";
};
}