summaryrefslogtreecommitdiff
path: root/Biz/Dev/Dns.nix
blob: baf79aaa91bfdb5ff17ddf640179f73399e1a7bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ ... }:

{
  services.bind = {
    enable = true;
    forwarders = [ "8.8.8.8" "1.1.1.1" ];
    cacheNetworks = [ "127.0.0.0/8" "192.168.0.0/24" ];
    extraConfig = "";
    extraOptions = ''
      dnssec-validation auto;
    '';
  };

  #networking.extraHosts = ''
  #  192.168.0.1     router.home
  #  192.168.0.196   lithium.home
  #'';

}