From 7dcde9c87c738d3a42d420ea46684267aa7b2961 Mon Sep 17 00:00:00 2001 From: niten Date: Fri, 6 Oct 2023 10:43:00 -0700 Subject: [PATCH] aaaarecords -> aaaaRecords --- zone-to-zonefile.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone-to-zonefile.nix b/zone-to-zonefile.nix index 4750bb4..fe6e317 100644 --- a/zone-to-zonefile.nix +++ b/zone-to-zonefile.nix @@ -87,7 +87,7 @@ let "${hostname} IN AAAA ${hostData.ipv6-address}"; descriptionRecord = optional (hostData.description != null) ''${hostname} IN TXT "${hostData.description}"''; - in joinLines (aRecord ++ aaaarecord ++ sshfpRecords ++ descriptionRecord); + in joinLines (aRecord ++ aaaaRecord ++ sshfpRecords ++ descriptionRecord); cnameRecord = alias: host: "${alias} IN CNAME ${host}";