wpa-supplicant service: remove use of network-interfaces.target

Changed files
+2 -2
nixos
modules
services
networking
+2 -2
nixos/modules/services/networking/wpa_supplicant.nix
···
in {
description = "WPA Supplicant";
-
after = [ "network-interfaces.target" ] ++ lib.concatMap deviceUnit ifaces;
+
after = [ "network.target" ] ++ lib.concatMap deviceUnit ifaces;
requires = lib.concatMap deviceUnit ifaces;
-
wantedBy = [ "network.target" ];
+
wantedBy = [ "network-online.target" ];
path = [ pkgs.wpa_supplicant ];