mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 13:39:15 +03:00
supplicant: Make the device pull in the supplicant service.
The udev rule should do this. Not sure why it doesn't. Fixes #19029.
This commit is contained in:
parent
a98dccf1e4
commit
b692e06686
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ let
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
{ description = "Supplicant ${iface}${optionalString (iface=="WLAN"||iface=="LAN") " %I"}";
|
{ description = "Supplicant ${iface}${optionalString (iface=="WLAN"||iface=="LAN") " %I"}";
|
||||||
wantedBy = [ "network.target" ];
|
wantedBy = [ "network.target" ] ++ deps;
|
||||||
bindsTo = deps;
|
bindsTo = deps;
|
||||||
after = deps;
|
after = deps;
|
||||||
before = [ "network.target" ];
|
before = [ "network.target" ];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue