Remove dhcpcd_without_udev attribute

This commit is contained in:
Eelco Dolstra 2014-04-18 15:36:06 +02:00
parent 890d0cc3a5
commit da774bced5
2 changed files with 1 additions and 3 deletions

View file

@ -4,7 +4,7 @@ with lib;
let
dhcpcd = if !config.boot.isContainer then pkgs.dhcpcd else pkgs.dhcpcd_without_udev;
dhcpcd = if !config.boot.isContainer then pkgs.dhcpcd else pkgs.dhcpcd.override { udev = null; };
# Don't start dhcpcd on explicitly configured interfaces or on
# interfaces that are part of a bridge.

View file

@ -827,8 +827,6 @@ let
dhcpcd = callPackage ../tools/networking/dhcpcd { };
dhcpcd_without_udev = callPackage ../tools/networking/dhcpcd { udev = null; };
diffstat = callPackage ../tools/text/diffstat { };
diffutils = callPackage ../tools/text/diffutils { };