ctucx.git: dns.nix

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

commit 1d6452f3c6fe65444a6115f49a5cf25724dee42d
parent 774ddfcd95a16132d7911d7c6d24de85b106ea56
Author: Leah (ctucx) <leah@ctu.cx>
Date: Tue, 13 Sep 2022 10:06:50 +0200

decrease ttl to 1h
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dns/types/zone.nix b/dns/types/zone.nix
@@ -66,7 +66,7 @@ let
     options = {
       TTL = mkOption {
         type = types.ints.unsigned;
-        default = 24 * 60 * 60;
+        default = 60 * 60;
         example = literalExample "60 * 60";
         description = "Default record caching duration. Sets the $TTL variable";
       };