From 3baca557466fe4e3ae06f4ab5f44f52edadb6fa0 Mon Sep 17 00:00:00 2001 From: niten Date: Thu, 5 Oct 2023 14:50:07 -0700 Subject: [PATCH] What...zone-definition isn't a thing --- authoritative-dns.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/authoritative-dns.nix b/authoritative-dns.nix index d3136a7..9f7f9f9 100644 --- a/authoritative-dns.nix +++ b/authoritative-dns.nix @@ -79,8 +79,7 @@ in { dnssec = zoneCfg.ksk.key-file != null; ksk.keyFile = mkIf (zoneCfg.ksk.key-file != null) zoneCfg.ksk.key-file; - data = let - content = zoneToZonefile cfg.timestamp dom domCfg.zone-definition; + data = let content = zoneToZonefile cfg.timestamp dom domCfg.zone; in trace content content; }) cfg.domains; };