2016-09-17 22:30:27 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.powerdns;
|
|
|
|
configDir = pkgs.writeTextDir "pdns.conf" "${cfg.extraConfig}";
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
services.powerdns = {
|
2022-08-28 20:18:44 +01:00
|
|
|
enable = mkEnableOption (lib.mdDoc "PowerDNS domain name server");
|
2016-09-17 22:30:27 +01:00
|
|
|
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "launch=bind";
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc ''
|
2020-10-15 01:25:38 +01:00
|
|
|
PowerDNS configuration. Refer to
|
2022-07-28 22:19:15 +01:00
|
|
|
<https://doc.powerdns.com/authoritative/settings.html>
|
2020-10-15 01:25:38 +01:00
|
|
|
for details on supported values.
|
2016-09-17 22:30:27 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-10-15 01:25:38 +01:00
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2022-03-28 16:48:40 +01:00
|
|
|
systemd.packages = [ pkgs.pdns ];
|
2020-10-15 01:25:38 +01:00
|
|
|
|
2016-09-17 22:30:27 +01:00
|
|
|
systemd.services.pdns = {
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
2020-10-15 01:25:38 +01:00
|
|
|
after = [ "network.target" "mysql.service" "postgresql.service" "openldap.service" ];
|
2016-09-17 22:30:27 +01:00
|
|
|
|
|
|
|
serviceConfig = {
|
2022-03-28 16:48:40 +01:00
|
|
|
ExecStart = [ "" "${pkgs.pdns}/bin/pdns_server --config-dir=${configDir} --guardian=no --daemon=no --disable-syslog --log-timestamp=no --write-pid=no" ];
|
2016-09-17 22:30:27 +01:00
|
|
|
};
|
|
|
|
};
|
2020-10-15 01:25:38 +01:00
|
|
|
|
|
|
|
users.users.pdns = {
|
|
|
|
isSystemUser = true;
|
|
|
|
group = "pdns";
|
|
|
|
description = "PowerDNS";
|
|
|
|
};
|
|
|
|
|
|
|
|
users.groups.pdns = {};
|
|
|
|
|
2016-09-17 22:30:27 +01:00
|
|
|
};
|
|
|
|
}
|