about summary refs log tree commit diff
path: root/nixos/modules/services/networking/dnsmasq.nix
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-02-25 09:22:16 -0800
committerWilliam A. Kennington III <william@wkennington.com>2015-02-25 09:22:16 -0800
commitf27fa79aa9c6c2222963edf3e115e35c8e03ac92 (patch)
tree3e469ab7688323c268c484c0f889b5d132ccccc4 /nixos/modules/services/networking/dnsmasq.nix
parentaaf09cd216bf5057b7dd60ed286da9bbec2ae0d7 (diff)
nixos/dnsmasq: Fix service name typo
Diffstat (limited to 'nixos/modules/services/networking/dnsmasq.nix')
-rw-r--r--nixos/modules/services/networking/dnsmasq.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/dnsmasq.nix b/nixos/modules/services/networking/dnsmasq.nix
index fbb211911f1ce..7ddabf73106e0 100644
--- a/nixos/modules/services/networking/dnsmasq.nix
+++ b/nixos/modules/services/networking/dnsmasq.nix
@@ -82,7 +82,7 @@ in
 
     systemd.services.dnsmasq = {
         description = "dnsmasq daemon";
-        after = [ "network.target" "systemd-resolved.conf" ];
+        after = [ "network.target" "systemd-resolved.service" ];
         wantedBy = [ "multi-user.target" ];
         path = [ dnsmasq ];
         preStart = ''