ctucx.git: dns.nix

fork of https://github.com/kirelagin/dns.nix

commit d622906683a75fd7293bc479fe8956f2a63093ca
parent 9a4d9aee93d1afd919b4e02bd37bcb19730df464
Author: Kirill Elagin <kirelagin@gmail.com>
Date: Sun, 10 Mar 2019 04:15:29 +0100

fix: Fix the name of the AAAA record type
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dns/types/records/AAAA.nix b/dns/types/records/AAAA.nix
@@ -12,7 +12,7 @@ let
 in
 
 {
-  rtype = "AAAAA";
+  rtype = "AAAA";
   options = {
     address = mkOption {
       type = types.str;