aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/richese/hardware-configuration.nix
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-06-20 16:40:12 -0700
committerMark Nipper <nipsy@bitgnome.net>2024-06-20 16:40:12 -0700
commit7ef5045d82e19f896c950938cd55d5056dce75c9 (patch)
tree664593b9f3649c20da7bb7932034e422a1298967 /hosts/richese/hardware-configuration.nix
parent1788e46b913bae9aae635a80dae362d257cb06ef (diff)
downloadnix-7ef5045d82e19f896c950938cd55d5056dce75c9.tar
nix-7ef5045d82e19f896c950938cd55d5056dce75c9.tar.gz
nix-7ef5045d82e19f896c950938cd55d5056dce75c9.tar.bz2
nix-7ef5045d82e19f896c950938cd55d5056dce75c9.tar.lz
nix-7ef5045d82e19f896c950938cd55d5056dce75c9.tar.xz
nix-7ef5045d82e19f896c950938cd55d5056dce75c9.tar.zst
nix-7ef5045d82e19f896c950938cd55d5056dce75c9.zip
Fix virtio kernel module
Diffstat (limited to 'hosts/richese/hardware-configuration.nix')
-rw-r--r--hosts/richese/hardware-configuration.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/richese/hardware-configuration.nix b/hosts/richese/hardware-configuration.nix
index 01bb4e8..bddce42 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" "virtio_scsi" ];
- boot.initrd.kernelModules = [ ];
+ boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" ];
+ boot.initrd.kernelModules = [ "virtio_scsi" ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];