From e9520e66cdfa29ba3e42ce710b3c9fd4176d705f Mon Sep 17 00:00:00 2001 From: niten Date: Thu, 18 Jul 2024 13:15:23 -0700 Subject: [PATCH] Wrap filter in () --- lib/fudo/local-network.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fudo/local-network.nix b/lib/fudo/local-network.nix index a536174..213a52d 100644 --- a/lib/fudo/local-network.nix +++ b/lib/fudo/local-network.nix @@ -124,7 +124,7 @@ in { config.fudo.hosts); in mapAttrs' (hostname: _: nameValuePair (getHostIpv4 hostname) [ (getHostFqdn hostname) hostname ]) - filterAttrs (hostname: _: !isNull (getHostIpv4 hostname)) siteHosts; + (filterAttrs (hostname: _: !isNull (getHostIpv4 hostname)) siteHosts); services.kea.dhcp4 = { enable = true;