nixos/hardware.usb-storage: remove `with lib;`

Changed files
+3 -5
nixos
modules
hardware
+3 -5
nixos/modules/hardware/usb-storage.nix
···
{ config, lib, pkgs, ... }:
-
with lib;
-
{
-
options.hardware.usbStorage.manageStartStop = mkOption {
-
type = types.bool;
+
options.hardware.usbStorage.manageStartStop = lib.mkOption {
+
type = lib.types.bool;
default = true;
description = ''
Enable this option to gracefully spin-down external storage during shutdown.
···
'';
};
-
config = mkIf config.hardware.usbStorage.manageStartStop {
+
config = lib.mkIf config.hardware.usbStorage.manageStartStop {
services.udev.extraRules = ''
ACTION=="add|change", SUBSYSTEM=="scsi_disk", DRIVERS=="usb-storage", ATTR{manage_system_start_stop}="1"
'';