diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-06-20 16:29:35 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-06-20 16:29:35 -0700 |
commit | 1788e46b913bae9aae635a80dae362d257cb06ef (patch) | |
tree | 33121234ae9e7a27bc51d8622308bea4265905b0 /hosts/richese | |
parent | 249b648ebc9539da8c4d61868a15a93259400346 (diff) | |
download | nix-1788e46b913bae9aae635a80dae362d257cb06ef.tar nix-1788e46b913bae9aae635a80dae362d257cb06ef.tar.gz nix-1788e46b913bae9aae635a80dae362d257cb06ef.tar.bz2 nix-1788e46b913bae9aae635a80dae362d257cb06ef.tar.lz nix-1788e46b913bae9aae635a80dae362d257cb06ef.tar.xz nix-1788e46b913bae9aae635a80dae362d257cb06ef.tar.zst nix-1788e46b913bae9aae635a80dae362d257cb06ef.zip |
Fix virtio kernel module
Diffstat (limited to 'hosts/richese')
-rw-r--r-- | hosts/richese/hardware-configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/richese/hardware-configuration.nix b/hosts/richese/hardware-configuration.nix index 4cd9164..01bb4e8 100644 --- a/hosts/richese/hardware-configuration.nix +++ b/hosts/richese/hardware-configuration.nix @@ -8,7 +8,7 @@ [ #(modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" "virtio_blk" ]; + boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" "virtio_scsi" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; |