about summary refs log tree commit diff
path: root/lib/dns.nix
blob: c0e464148a1afe7dc7b354dcc4d1ad9f94694598 (plain) (blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{ lib, inputs, ... }:
with lib;
recursiveUpdate inputs.dns.lib {
  mkDoT = { ips, tls }: map (ip: "${ip}#${tls}") ips;

  const = {
    quad9 = {
      default = {
        ips = [
          "9.9.9.9"
          "149.112.112.112"
          "2620:fe::fe"
          "2620:fe::9"
        ];
        tls = "dns.quad9.net";
      };
      unsecured = {
        ips = [
          "9.9.9.10"
          "149.112.112.10"
          "2620:fe::10"
          "2620:fe::fe:10"
        ];
        tls = "dns10.quad9.net";
      };
      ecs = {
        ips = [
          "9.9.9.11"
          "149.112.112.11"
          "2620:fe::11"
          "2620:fe::fe:11"
        ];
        tls = "dns11.quad9.net";
      };
    };
    cloudflare = {
      default = {
        ips = [
          "1.1.1.1"
          "1.0.0.1"
          "2606:4700:4700::1111"
          "2606:4700:4700::1001"
        ];
        tls = "cloudflare-dns.com";
      };
      security = {
        ips = [
          "1.1.1.2"
          "1.0.0.2"
          "2606:4700:4700::1112"
          "2606:4700:4700::1002"
        ];
        tls = "security.cloudflare-dns.com";
      };
      family = {
        ips = [
          "1.1.1.3"
          "1.0.0.3"
          "2606:4700:4700::1113"
          "2606:4700:4700::1003"
        ];
        tls = "family.cloudflare-dns.com";
      };
    };
  };
}

Consider giving Nix/NixOS a try! <3