dnsmasq nixos module: fix path in systemd service

Changed files
+1 -1
nixos
modules
services
networking
+1 -1
nixos/modules/services/networking/dnsmasq.nix
···
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 ];
};