blob: 46ec1e61ae919909dda9b458f87f0406857f456d (
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
|
{ 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: { data = zone.content; })
config.local.ns.zones;
};
};
}
|