1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 07:04:28 +00:00

dhcpcd: Don't depend on network-interfaces.target

Dhcpcd automatically detects new interfaces, so we can start it right
away.
This commit is contained in:
Eelco Dolstra 2012-10-11 17:57:54 -04:00
parent b606165bd9
commit 71a541afb6

View file

@ -94,8 +94,7 @@ in
boot.systemd.services.dhcpcd =
{ description = "DHCP Client";
wantedBy = [ "multi-user.target" ];
after = [ "network-interfaces.target" ];
wantedBy = [ "network.target" ];
path = [ dhcpcd pkgs.nettools pkgs.openresolv ];