1
Fork 0
satellite/hosts/nixos/lapetus/services/syncthing.nix

12 lines
222 B
Nix
Raw Normal View History

2023-07-18 16:30:04 +02:00
{
imports = [ ../../common/optional/syncthing.nix ];
2023-07-18 17:04:12 +02:00
networking.firewall.allowedTCPPorts = [ 8384 ];
2023-07-18 16:30:04 +02:00
services.syncthing = {
2023-07-18 16:56:32 +02:00
guiAddress = "0.0.0.0:8384"; # TODO: put this behind nginx
2023-07-18 16:30:04 +02:00
folders = { };
};
}