blob: d9f482c9b43e922f89af6aa5722a62f9dbfac0a5 [file] [log] [blame]
TheCodedProfbdc23452023-06-14 13:39:10 -04001{ pkgs, ... }: {
2 environment.systemPackages = with pkgs; [ syncthing ];
3
4 services.syncthing.enable = true;
5 services.syncthing.openDefaultPorts = true;
6
Skyler Grey (Minion3665)18e02e72023-06-23 18:24:13 +00007 services.syncthing.guiAddress = "0.0.0.0:8384";
TheCodedProfbdc23452023-06-14 13:39:10 -04008}