nixos/installer.scan: remove `with lib;`

authored by Felix Buehler and committed by Jörg Thalheim de2bbebb e6da97a1

+1 -4
+1 -4
nixos/modules/installer/scan/detected.nix
··· 1 1 # List all devices which are detected by nixos-generate-config. 2 2 # Common devices are enabled by default. 3 3 { lib, ... }: 4 - 5 - with lib; 6 - 7 4 { 8 - config = mkDefault { 5 + config = lib.mkDefault { 9 6 # Common firmware, i.e. for wifi cards 10 7 hardware.enableRedistributableFirmware = true; 11 8 };