feat: base setup for dns

This commit is contained in:
silver 2023-01-17 22:40:04 +00:00
parent bbeb58db57
commit 2d0079daa4
2 changed files with 65 additions and 0 deletions

23
applications/dns.nix Normal file
View 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 = [ ];
};
};
}