infrastructure/hosts/olympus/bastion/containers/dns.nix
2024-03-18 17:12:51 +01:00

8 lines
134 B
Nix

{ ... }: {
imports = [ ./common.nix ];
services.v.dns = {
enable = true;
openFirewall = true;
mode = "server";
};
}