nixos/bind: allow manual additions to zone config fragments
This commit is contained in:
parent
46f8ec0278
commit
6332bc25cd
1 changed files with 3 additions and 1 deletions
|
@ -33,7 +33,7 @@ let
|
|||
${cfg.extraConfig}
|
||||
|
||||
${ concatMapStrings
|
||||
({ name, file, master ? true, slaves ? [], masters ? [] }:
|
||||
({ name, file, master ? true, slaves ? [], masters ? [], extraConfig ? "" }:
|
||||
''
|
||||
zone "${name}" {
|
||||
type ${if master then "master" else "slave"};
|
||||
|
@ -52,6 +52,7 @@ let
|
|||
''
|
||||
}
|
||||
allow-query { any; };
|
||||
${extraConfig}
|
||||
};
|
||||
'')
|
||||
cfg.zones }
|
||||
|
@ -131,6 +132,7 @@ in
|
|||
file = "/var/dns/example.com";
|
||||
masters = ["192.168.0.1"];
|
||||
slaves = [];
|
||||
extraConfig = "";
|
||||
}];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue