From 7409a3951fe78ac124a500aaeb0ab07be5dc074a Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 3 Aug 2023 23:12:26 -0600 Subject: [PATCH] [NixOS] Enable relays and and local announce for syncthing --- nixos/syncthing.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/syncthing.nix b/nixos/syncthing.nix index d0e70bc8..36fa8736 100644 --- a/nixos/syncthing.nix +++ b/nixos/syncthing.nix @@ -29,6 +29,10 @@ in devices = allDevices; }; }; + options = { + relaysEnabled = true; + localAnnounceEnabled = true; + }; }; }; }