Format tree with treefmt
This commit is contained in:
@@ -33,17 +33,49 @@ in
|
||||
# Including the key via keyFiles keeps the secret out of the Nix store.
|
||||
keyFiles = [ config.clan.core.vars.generators.dns-tsig.files."tsig.conf".path ];
|
||||
settings = {
|
||||
server.listen = [ "0.0.0.0@53" "::@53" ];
|
||||
log = [ { target = "syslog"; any = "info"; } ];
|
||||
server.listen = [
|
||||
"0.0.0.0@53"
|
||||
"::@53"
|
||||
];
|
||||
log = [
|
||||
{
|
||||
target = "syslog";
|
||||
any = "info";
|
||||
}
|
||||
];
|
||||
|
||||
remote = [
|
||||
{ id = "ns1"; address = [ ns1zt ]; key = "cnx_xfr"; }
|
||||
{ id = "ns2"; address = [ ns2zt ]; key = "cnx_xfr"; }
|
||||
{
|
||||
id = "ns1";
|
||||
address = [ ns1zt ];
|
||||
key = "cnx_xfr";
|
||||
}
|
||||
{
|
||||
id = "ns2";
|
||||
address = [ ns2zt ];
|
||||
key = "cnx_xfr";
|
||||
}
|
||||
];
|
||||
|
||||
acl = [
|
||||
{ id = "acl_ns1"; address = [ ns1zt ]; key = "cnx_xfr"; action = [ "transfer" "notify" ]; }
|
||||
{ id = "acl_ns2"; address = [ ns2zt ]; key = "cnx_xfr"; action = [ "transfer" "notify" ]; }
|
||||
{
|
||||
id = "acl_ns1";
|
||||
address = [ ns1zt ];
|
||||
key = "cnx_xfr";
|
||||
action = [
|
||||
"transfer"
|
||||
"notify"
|
||||
];
|
||||
}
|
||||
{
|
||||
id = "acl_ns2";
|
||||
address = [ ns2zt ];
|
||||
key = "cnx_xfr";
|
||||
action = [
|
||||
"transfer"
|
||||
"notify"
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user