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

Changed files
+1 -4
nixos
modules
installer
+1 -4
nixos/modules/installer/scan/detected.nix
···
# List all devices which are detected by nixos-generate-config.
# Common devices are enabled by default.
{ lib, ... }:
-
-
with lib;
-
{
-
config = mkDefault {
# Common firmware, i.e. for wifi cards
hardware.enableRedistributableFirmware = true;
};
···
# List all devices which are detected by nixos-generate-config.
# Common devices are enabled by default.
{ lib, ... }:
{
+
config = lib.mkDefault {
# Common firmware, i.e. for wifi cards
hardware.enableRedistributableFirmware = true;
};