summaryrefslogtreecommitdiff
path: root/Omni/Dev/Dns.nix
blob: e42b10a0cb9496a0f83a2a0b8e316b66985f9f00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{...}: {
  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
  #'';
}