summaryrefslogtreecommitdiff
path: root/hosts/surtr/dns/default.nix
blob: 23edfab554d27ae93b1c60cd62c8589a318c2fe9 (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
{...}:
{
  config = {
    fileSystems."/var/lib/knot" =
      { device = "surtr/safe/var-lib-knot";
        fsType = "zfs";
      };
    
    services.knot = {
      enable = true;
      extraConfig = ''
        server:
          listen: 127.0.0.1@53
          listen: ::1@53
          listen: 202.61.241.61@53
          listen: 2a03:4000:52:ada::@53

        zone:
          - domain: yggdrasil.li
            file: ${./zones/li.yggdrasil.soa}
            semantic-checks: on
      '';
    };
  };
}