From 91fa35cb59031900e75384590254f1ff0d58bac3 Mon Sep 17 00:00:00 2001 From: Lyn Date: Tue, 14 Jan 2025 21:43:47 +0100 Subject: [PATCH] bugfix in mesh config autogeneration for device without igd enabled --- modules/services/wgautomesh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/wgautomesh.nix b/modules/services/wgautomesh.nix index 1bb3c55..d7ec81a 100644 --- a/modules/services/wgautomesh.nix +++ b/modules/services/wgautomesh.nix @@ -88,7 +88,7 @@ in { upnp_forward_external_port = config.networking.wireguard.interfaces.wg1.listenPort; } ] - else null; + else []; peers = buildPeerlist "IPv6" meshnetwork.hosts ++ buildPeerlist "IPv4" meshnetwork.hosts; }; gossipSecretFile = gossip_secret_path;