about summary refs log tree commit diff stats
path: root/modules/by-name/dn/dns/module.nix
blob: 0bb786ac6c5771b61952c5885992ac951da6d0b4 (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
67
68
69
70
71
72
73
74
75
76
77
{
  config,
  lib,
  ...
}: let
  cfg = config.vhack.dns;

  zones =
    builtins.mapAttrs (name: value: {
      data =
        dns.types.zone.renderToString name value;
    })
    cfg.zones;

  dns = import ./dns {inherit lib;};

  ports = let
    parsePorts = listeners: let
      splitAddress = addr: lib.splitString "@" addr;

      extractPort = addr: let
        split = splitAddress addr;
      in
        lib.toInt (
          if (builtins.length split) == 2
          then builtins.elemAt split 1
          else "53"
        );
    in
      builtins.map extractPort listeners;
  in
    lib.unique (parsePorts cfg.interfaces);
in {
  options.vhack.dns = {
    enable = lib.mkEnableOption "custom dns server";

    openFirewall = lib.mkOption {
      type = lib.types.bool;
      default = false;
      description = ''
        Open the following ports:
        TCP (${lib.concatStringsSep ", " (map toString ports)})
        UDP (${lib.concatStringsSep ", " (map toString ports)})
      '';
    };

    interfaces = lib.mkOption {
      type = lib.types.listOf lib.types.str;
      description = ''
        A list of the interfaces to bind to. To select the port add `@` to the end of the
        interface. The default port is 53.
      '';
      example = [
        "192.168.1.3"
        "2001:db8:1::3"
      ];
    };

    zones = lib.mkOption {
      type = lib.types.attrsOf dns.types.zone.zone;
      description = "DNS zones";
    };
  };

  config = lib.mkIf cfg.enable {
    services.nsd = {
      enable = true;
      verbosity = 4;
      inherit (cfg) interfaces;
      inherit zones;
    };

    networking.firewall.allowedUDPPorts = lib.mkIf cfg.openFirewall ports;
    networking.firewall.allowedTCPPorts = lib.mkIf cfg.openFirewall ports;

  };
}