summaryrefslogtreecommitdiff
path: root/Biz/Dev/Dns.nix
blob: 0490ead470a268fcc54b7a68159bbc9144f08972 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ ... }:



{
  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
  #'';

}