2016-02-11 19:02:11 +08:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.pdnsd;
|
|
|
|
pdnsd = pkgs.pdnsd;
|
|
|
|
pdnsdUser = "pdnsd";
|
|
|
|
pdnsdGroup = "pdnsd";
|
|
|
|
pdnsdConf = pkgs.writeText "pdnsd.conf" ''
|
|
|
|
global {
|
|
|
|
run_as=${pdnsdUser};
|
|
|
|
cache_dir="${cfg.cacheDir}";
|
|
|
|
${cfg.globalConfig}
|
|
|
|
}
|
|
|
|
|
|
|
|
server {
|
|
|
|
${cfg.serverConfig}
|
|
|
|
}
|
|
|
|
${cfg.extraConfig}
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
|
2024-12-10 20:26:33 +01:00
|
|
|
{
|
2016-02-11 19:02:11 +08:00
|
|
|
options = {
|
|
|
|
services.pdnsd = {
|
|
|
|
enable = mkEnableOption "pdnsd";
|
|
|
|
|
|
|
|
cacheDir = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "/var/cache/pdnsd";
|
|
|
|
description = "Directory holding the pdnsd cache";
|
|
|
|
};
|
|
|
|
|
|
|
|
globalConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Global configuration that should be added to the global directory
|
|
|
|
of `pdnsd.conf`.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
serverConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Server configuration that should be added to the server directory
|
|
|
|
of `pdnsd.conf`.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Extra configuration directives that should be added to
|
|
|
|
`pdnsd.conf`.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
2024-12-10 20:26:33 +01:00
|
|
|
};
|
2016-02-11 19:02:11 +08:00
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2019-09-14 19:51:29 +02:00
|
|
|
users.users.${pdnsdUser} = {
|
2016-02-11 19:02:11 +08:00
|
|
|
uid = config.ids.uids.pdnsd;
|
|
|
|
group = pdnsdGroup;
|
|
|
|
description = "pdnsd user";
|
|
|
|
};
|
|
|
|
|
2019-09-14 19:51:29 +02:00
|
|
|
users.groups.${pdnsdGroup} = {
|
2016-02-11 19:02:11 +08:00
|
|
|
gid = config.ids.gids.pdnsd;
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.services.pdnsd = {
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
after = [ "network.target" ];
|
|
|
|
preStart = ''
|
|
|
|
mkdir -p "${cfg.cacheDir}"
|
|
|
|
touch "${cfg.cacheDir}/pdnsd.cache"
|
|
|
|
chown -R ${pdnsdUser}:${pdnsdGroup} "${cfg.cacheDir}"
|
|
|
|
'';
|
|
|
|
description = "pdnsd";
|
|
|
|
serviceConfig = {
|
|
|
|
ExecStart = "${pdnsd}/bin/pdnsd -c ${pdnsdConf}";
|
|
|
|
};
|
2024-12-10 20:26:33 +01:00
|
|
|
};
|
2016-02-11 19:02:11 +08:00
|
|
|
};
|
|
|
|
}
|