Constantin Gierczak--Galle
225ced72c2
Reviewed-on: #5 Co-authored-by: Constantin Gierczak--Galle <git.cst1@mailbox.org> Co-committed-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
22 lines
398 B
Nix
22 lines
398 B
Nix
{ sources, ... }:
|
|
|
|
let
|
|
dns = import sources.dns-nix { };
|
|
in
|
|
{
|
|
services.nsd = {
|
|
enable = true;
|
|
zones = {
|
|
"beta.dgnum.eu" = {
|
|
# provideXFR = [ ... ];
|
|
# notify = [ ... ];
|
|
data = dns.lib.toString "beta.dgnum.eu" (import ./beta.dgnum.eu.nix { inherit dns; });
|
|
};
|
|
};
|
|
};
|
|
networking = {
|
|
firewall = {
|
|
allowedUDPPorts = [ 53 ];
|
|
};
|
|
};
|
|
}
|