From 9cc93918a9b2d20815b2c48730a99968b87279fb Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 9 Dec 2021 21:48:54 -0500 Subject: [PATCH] hosts/Infini-STICK: force-load usb_storage --- hosts/Infini-STICK/hardware-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/Infini-STICK/hardware-configuration.nix b/hosts/Infini-STICK/hardware-configuration.nix index abc5f50..a45f0f5 100644 --- a/hosts/Infini-STICK/hardware-configuration.nix +++ b/hosts/Infini-STICK/hardware-configuration.nix @@ -11,8 +11,8 @@ in (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "ahci" "usb_storage" "usbhid" "sd_mod" ]; - boot.initrd.kernelModules = [ ]; + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "ahci" "usbhid" "sd_mod" ]; + boot.initrd.kernelModules = [ "usb_storage" ]; boot.kernelModules = [ "kvm-amd" "kvm-intel" ]; boot.extraModulePackages = [ ]; boot.kernelParams = [ "boot.shell_on_fail" ];