2023-07-18 16:30:04 +02:00
|
|
|
{
|
2023-12-10 23:48:46 +01:00
|
|
|
imports = [ ../../common/optional/services/syncthing.nix ];
|
2023-07-18 16:30:04 +02:00
|
|
|
|
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
|
|
|
|
2023-09-28 02:13:35 +02:00
|
|
|
settings.folders = { };
|
2023-07-18 16:30:04 +02:00
|
|
|
};
|
|
|
|
}
|