summaryrefslogtreecommitdiff
path: root/sys/ns/nsd.nix
blob: 29dd665ef887981d9109763b0a63c53765c03185 (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
{ config, lib, ... }:
with lib; let
  cfg = config.local.ns.server;
in
{
  options.local.ns.server = {
    enable = mkEnableOption "nsd authoritative server";
  };

  config = mkIf cfg.enable {
    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 (_: zone: zone.nsdConfig) config.local.ns.zones;
    };
  };
}