summaryrefslogtreecommitdiff
path: root/sys/ns/nsd.nix
blob: 74fa7dd4bbf538173f078632bc633125465c809c (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ config, lib, ... }:
with lib; let
  cfg = config.local.ns.server;
in
{
  options.local.ns.server = {
    enable = mkEnableOption "nsd authoritative server";

    tsigName = mkOption {
      type = types.str;
      default = "NOKEY";
    };
  };

  config = mkIf cfg.enable {
    assertions = [
      {
        assertion = cfg.tsigName == "NOKEY" || config.services.nsd.keys ? "${cfg.tsigName}";
        message = "TSIG key '${cfg.tsigName}' not defined";
      }
    ];

    networking.firewall =
      let
        inherit (config.services.nsd) port;
      in
      {
        allowedTCPPorts = [ port ];
        allowedUDPPorts = [ port ];
      };

    services.nsd = {
      enable = true;

      ipFreebind = true;

      bind8Stats = true;
      statistics = 3600;

      tcpCount = 128;
      tcpTimeout = 30;
      tcpQueryCount = 128;

      zones = mapAttrs' (name: zone: nameValuePair "${name}." zone.nsdConfig) config.local.ns.zones;
    };
  };
}