diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-06-20 17:06:55 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-06-20 17:06:55 -0700 |
commit | 6a463c6995f0019b6460f57023195bd87f45b6ee (patch) | |
tree | b4cbc2780034a3a7dc704c2604f39be9beb83abb /hosts/richese | |
parent | 7ef5045d82e19f896c950938cd55d5056dce75c9 (diff) | |
download | nix-6a463c6995f0019b6460f57023195bd87f45b6ee.tar nix-6a463c6995f0019b6460f57023195bd87f45b6ee.tar.gz nix-6a463c6995f0019b6460f57023195bd87f45b6ee.tar.bz2 nix-6a463c6995f0019b6460f57023195bd87f45b6ee.tar.lz nix-6a463c6995f0019b6460f57023195bd87f45b6ee.tar.xz nix-6a463c6995f0019b6460f57023195bd87f45b6ee.tar.zst nix-6a463c6995f0019b6460f57023195bd87f45b6ee.zip |
Fix kernel modules
Diffstat (limited to 'hosts/richese')
-rw-r--r-- | hosts/richese/hardware-configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/richese/hardware-configuration.nix b/hosts/richese/hardware-configuration.nix index bddce42..e4e04cf 100644 --- a/hosts/richese/hardware-configuration.nix +++ b/hosts/richese/hardware-configuration.nix @@ -8,8 +8,8 @@ [ #(modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" ]; - boot.initrd.kernelModules = [ "virtio_scsi" ]; + boot.initrd.availableKernelModules = [ "ohci_pci" "ehci_pci" "ahci" "virtio_pci" "virtio_scsi" "sd_mod" ]; + boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; |