23 lines
338 B
Nix
23 lines
338 B
Nix
|
{ 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 = [ ];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
}
|