Loading nixos/modules/hardware/usb-storage.nix +7 −4 Original line number Diff line number Diff line { config, lib, pkgs, ... }: { options.hardware.usbStorage.manageStartStop = lib.mkOption { options.hardware.usbStorage.manageShutdown = lib.mkOption { type = lib.types.bool; default = true; default = false; description = '' Enable this option to gracefully spin-down external storage during shutdown. If you suspect improper head parking after poweroff, install `smartmontools` and check Loading @@ -10,9 +11,11 @@ ''; }; config = lib.mkIf config.hardware.usbStorage.manageStartStop { config = lib.mkIf config.hardware.usbStorage.manageShutdown { services.udev.extraRules = '' ACTION=="add|change", SUBSYSTEM=="scsi_disk", DRIVERS=="usb-storage", ATTR{manage_system_start_stop}="1" ACTION=="add|change", SUBSYSTEM=="scsi_disk", DRIVERS=="usb-storage|uas", ATTR{manage_shutdown}="1" ''; }; imports = [(lib.mkRenamedOptionModule [ "hardware" "usbStorage" "manageStartStop" ] [ "hardware" "usbStorage" "manageShutdown" ])]; } Loading
nixos/modules/hardware/usb-storage.nix +7 −4 Original line number Diff line number Diff line { config, lib, pkgs, ... }: { options.hardware.usbStorage.manageStartStop = lib.mkOption { options.hardware.usbStorage.manageShutdown = lib.mkOption { type = lib.types.bool; default = true; default = false; description = '' Enable this option to gracefully spin-down external storage during shutdown. If you suspect improper head parking after poweroff, install `smartmontools` and check Loading @@ -10,9 +11,11 @@ ''; }; config = lib.mkIf config.hardware.usbStorage.manageStartStop { config = lib.mkIf config.hardware.usbStorage.manageShutdown { services.udev.extraRules = '' ACTION=="add|change", SUBSYSTEM=="scsi_disk", DRIVERS=="usb-storage", ATTR{manage_system_start_stop}="1" ACTION=="add|change", SUBSYSTEM=="scsi_disk", DRIVERS=="usb-storage|uas", ATTR{manage_shutdown}="1" ''; }; imports = [(lib.mkRenamedOptionModule [ "hardware" "usbStorage" "manageStartStop" ] [ "hardware" "usbStorage" "manageShutdown" ])]; }