lol

dhcpcd service: always want by multi-user

When default gateways were specified the service wasn't wanted by anything at
all before.

+1 -1
+1 -1
nixos/modules/services/networking/dhcpcd.nix
··· 160 160 in 161 161 { description = "DHCP Client"; 162 162 163 - wantedBy = optional (!hasDefaultGatewaySet) "network-online.target"; 163 + wantedBy = [ "multi-user.target" ] ++ optional (!hasDefaultGatewaySet) "network-online.target"; 164 164 after = [ "network.target" ]; 165 165 wants = [ "network.target" ]; 166 166