lab-infra/machines/dns01/nsd.nix
Constantin Gierczak--Galle 1456cf626e
All checks were successful
lint / check (push) Successful in 22s
style(dns01): fmt
2024-11-22 22:16:22 +01:00

22 lines
407 B
Nix

{ sources, lib, ... }:
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 lib; });
};
};
};
networking = {
firewall = {
allowedUDPPorts = [ 53 ];
};
};
}