1
Fork 0
satellite/hosts/nixos/lapetus/services/syncthing.nix
2023-07-18 18:04:12 +03:00

13 lines
251 B
Nix

{
imports = [ ../../common/optional/syncthing.nix ];
networking.firewall.allowedTCPPorts = [ 8384 ];
services.syncthing = {
devices.lapetus.id = "";
guiAddress = "0.0.0.0:8384"; # TODO: put this behind nginx
folders = { };
};
}