nixos/applications/dns.nix

23 lines
338 B
Nix
Raw Normal View History

2023-01-17 22:40:04 +00:00
{ lib, pkgs, config, ... }: {
services.bind = {
enable = true;
forwarders = [
# these were in old config file
"193.1.100.130"
"193.1.100.131"
];
skynet.ie = {
extraConfig = "";
file = ./dns/skynet;
master = true;
masters = [];
slaves = [ ];
};
};
}