feat: base setup for dns
This commit is contained in:
parent
bbeb58db57
commit
2d0079daa4
2 changed files with 65 additions and 0 deletions
23
applications/dns.nix
Normal file
23
applications/dns.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ 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 = [ ];
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue