From 5e21271af04ef8288ac66a8d1b78d6893d8872c6 Mon Sep 17 00:00:00 2001 From: Thomas Strobel Date: Tue, 8 Sep 2015 19:23:17 +0200 Subject: [PATCH] dnsmasq nixos module: fix path in systemd service --- nixos/modules/services/networking/dnsmasq.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/dnsmasq.nix b/nixos/modules/services/networking/dnsmasq.nix index eb355151572..6907d63d761 100644 --- a/nixos/modules/services/networking/dnsmasq.nix +++ b/nixos/modules/services/networking/dnsmasq.nix @@ -96,7 +96,7 @@ in Type = "dbus"; BusName = "uk.org.thekelleys.dnsmasq"; ExecStart = "${dnsmasq}/bin/dnsmasq -k --enable-dbus --user=dnsmasq -C ${dnsmasqConf}"; - ExecReload = "${dnsmasq}/bin/kill -HUP $MAINPID"; + ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; }; restartTriggers = [ config.environment.etc.hosts.source ]; };