Skip to content

Commit

Permalink
nixos/network-interfaces: fix typo in udev rule syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ju1m committed Nov 24, 2020
1 parent a0efbc1 commit 2263fa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/tasks/network-interfaces.nix
Expand Up @@ -1246,7 +1246,7 @@ in
'';

# Udev attributes for systemd to name the device and to create a .device target.
systemdAttrs = n: ''NAME:="${n}", ENV{INTERFACE}:="${n}", ENV{SYSTEMD_ALIAS}:="/sys/subsystem/net/devices/${n}", TAG+="systemd"'';
systemdAttrs = n: ''NAME:="${n}", ENV{INTERFACE}="${n}", ENV{SYSTEMD_ALIAS}="/sys/subsystem/net/devices/${n}", TAG+="systemd"'';
in
flip (concatMapStringsSep "\n") (attrNames wlanDeviceInterfaces) (device:
let
Expand Down

0 comments on commit 2263fa5

Please sign in to comment.