summary refs log tree commit diff
path: root/nixos/modules/services/networking/pdns-recursor.nix
diff options
context:
space:
mode:
authorTQ Hirsch <thequux@thequux.com>2023-02-25 16:33:36 +0100
committerNick Cao <nickcao@nichi.co>2023-07-01 18:55:50 +0800
commitd25e5e21070cbacaa33361254a6a0b1e2e7c0e04 (patch)
tree83c2b68cb2f20ddf3900cd36781c68cb3f4d2d52 /nixos/modules/services/networking/pdns-recursor.nix
parent64e3b6239b658a7ce1ce316330fe3c7d018da089 (diff)
downloadnixpkgs-d25e5e21070cbacaa33361254a6a0b1e2e7c0e04.tar
nixpkgs-d25e5e21070cbacaa33361254a6a0b1e2e7c0e04.tar.gz
nixpkgs-d25e5e21070cbacaa33361254a6a0b1e2e7c0e04.tar.bz2
nixpkgs-d25e5e21070cbacaa33361254a6a0b1e2e7c0e04.tar.lz
nixpkgs-d25e5e21070cbacaa33361254a6a0b1e2e7c0e04.tar.xz
nixpkgs-d25e5e21070cbacaa33361254a6a0b1e2e7c0e04.tar.zst
nixpkgs-d25e5e21070cbacaa33361254a6a0b1e2e7c0e04.zip
nixos/powerdns, nixos/pdns-recurser: Symlink configuration into /etc
This places a symlink to the running configuration where the admin
tools expect it, allowing users to control the powerdns server or
recursor without manually specifying a config file.
Diffstat (limited to 'nixos/modules/services/networking/pdns-recursor.nix')
-rw-r--r--nixos/modules/services/networking/pdns-recursor.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/services/networking/pdns-recursor.nix b/nixos/modules/services/networking/pdns-recursor.nix
index 2f07cefc736..af5ea08a360 100644
--- a/nixos/modules/services/networking/pdns-recursor.nix
+++ b/nixos/modules/services/networking/pdns-recursor.nix
@@ -159,6 +159,8 @@ in {
 
   config = mkIf cfg.enable {
 
+    environment.etc."powerdns-recursor".source = configDir;
+
     services.pdns-recursor.settings = mkDefaultAttrs {
       local-address = cfg.dns.address;
       local-port    = cfg.dns.port;