summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorAlexey Shmalko <rasen.dubi@gmail.com>2016-09-20 11:07:51 +0300
committerGitHub <noreply@github.com>2016-09-20 11:07:51 +0300
commit60cfc558be8e64ee0ce02509ff7e32f5dc67cf19 (patch)
treef17843d161e6aba40ad44d91c14a1e102cf0c408 /nixos/modules
parent631c54c7a60bfd6dd7d8401953dcd3adfa90b1d5 (diff)
parentb0a1c0b343a037cd0f162a4e890a93f3c1cfe894 (diff)
downloadnixlib-60cfc558be8e64ee0ce02509ff7e32f5dc67cf19.tar
nixlib-60cfc558be8e64ee0ce02509ff7e32f5dc67cf19.tar.gz
nixlib-60cfc558be8e64ee0ce02509ff7e32f5dc67cf19.tar.bz2
nixlib-60cfc558be8e64ee0ce02509ff7e32f5dc67cf19.tar.lz
nixlib-60cfc558be8e64ee0ce02509ff7e32f5dc67cf19.tar.xz
nixlib-60cfc558be8e64ee0ce02509ff7e32f5dc67cf19.tar.zst
nixlib-60cfc558be8e64ee0ce02509ff7e32f5dc67cf19.zip
Merge pull request #18718 from Mic92/powerdns
powerdns: init at 4.0.1
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/module-list.nix1
-rw-r--r--nixos/modules/services/networking/powerdns.nix50
2 files changed, 51 insertions, 0 deletions
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 534dc1dca5f9..6616238f50de 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -387,6 +387,7 @@
   ./services/networking/ostinato.nix
   ./services/networking/pdnsd.nix
   ./services/networking/polipo.nix
+  ./services/networking/powerdns.nix
   ./services/networking/pptpd.nix
   ./services/networking/prayer.nix
   ./services/networking/privoxy.nix
diff --git a/nixos/modules/services/networking/powerdns.nix b/nixos/modules/services/networking/powerdns.nix
new file mode 100644
index 000000000000..91ad63b88139
--- /dev/null
+++ b/nixos/modules/services/networking/powerdns.nix
@@ -0,0 +1,50 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+  cfg = config.services.powerdns;
+  configDir = pkgs.writeTextDir "pdns.conf" "${cfg.extraConfig}";
+in {
+  options = {
+    services.powerdns = {
+      enable = mkEnableOption "Powerdns domain name server";
+
+      extraConfig = mkOption {
+        type = types.lines;
+        default = "launch=bind";
+        description = ''
+          Extra lines to be added verbatim to pdns.conf.
+          Powerdns will chroot to /var/lib/powerdns.
+          So any file, powerdns is supposed to be read,
+          should be in /var/lib/powerdns and needs to specified
+          relative to the chroot.
+        '';
+      };
+    };
+  };
+
+  config = mkIf config.services.powerdns.enable {
+    systemd.services.pdns = {
+      unitConfig.Documentation = "man:pdns_server(1) man:pdns_control(1)";
+      description = "Powerdns name server";
+      wantedBy = [ "multi-user.target" ];
+      after = ["network.target" "mysql.service" "postgresql.service" "openldap.service"];
+
+      serviceConfig = {
+        Restart="on-failure";
+        RestartSec="1";
+        StartLimitInterval="0";
+        PrivateTmp=true;
+        PrivateDevices=true;
+        CapabilityBoundingSet="CAP_CHOWN CAP_NET_BIND_SERVICE CAP_SETGID CAP_SETUID CAP_SYS_CHROOT";
+        NoNewPrivileges=true;
+        ExecStartPre = "${pkgs.coreutils}/bin/mkdir -p /var/lib/powerdns";
+        ExecStart = "${pkgs.powerdns}/bin/pdns_server --setuid=nobody --setgid=nogroup --chroot=/var/lib/powerdns --socket-dir=/ --daemon=no --guardian=no --disable-syslog --write-pid=no --config-dir=${configDir}";
+        ProtectSystem="full";
+        ProtectHome=true;
+        RestrictAddressFamilies="AF_UNIX AF_INET AF_INET6";
+      };
+    };
+  };
+}