From 2896f2cc14cb47984aa3a4a496b2b47441df08a9 Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Wed, 29 Apr 2026 16:53:48 +0300 Subject: [PATCH] nixos/kea: fix path to dhcpd4 config file Signed-off-by: Alexander V. Nikolaev --- nixos/modules/services/networking/kea.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/kea.nix b/nixos/modules/services/networking/kea.nix index 9f3e5aec5c74..99d938c14036 100644 --- a/nixos/modules/services/networking/kea.nix +++ b/nixos/modules/services/networking/kea.nix @@ -393,7 +393,7 @@ in [ (lib.getExe' cfg.package "kea-dhcp4") "-c" - "etc/kea/dhcp4-server.conf" + "/etc/kea/dhcp4-server.conf" ] ++ cfg.dhcp4.extraArgs );