From a904af4cfa18e4b5b380d016965555b7411ee08c Mon Sep 17 00:00:00 2001 From: arcnmx Date: Tue, 16 Apr 2024 14:12:10 -0700 Subject: [PATCH] fix(dnsmasq): dynamic hosts broke --- nixos/dnsmasq.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/dnsmasq.nix b/nixos/dnsmasq.nix index faf64344..5923aa22 100644 --- a/nixos/dnsmasq.nix +++ b/nixos/dnsmasq.nix @@ -13,7 +13,7 @@ cfg = config.services.dnsmasq; inherit (inputs.self.lib) systems; localSystems = filterAttrs (_: system: - system.config.access.online.enable && system.config.network.local.enable or false + system.config.access.online.enable && system.config.network.networks.local.enable or false ) systems; mkHostRecordPairs = _: system: [ (mkHostRecordPair "int" system)