Add vmw_pvscsi kernel module (#115)

This is required when infecting VMs based on VMware Paravirtual SCSI on VMware vSphere ESXi hosts
This commit is contained in:
Sandro 2022-11-04 06:01:23 +01:00 committed by GitHub
parent 318fc516d1
commit b771fe1afa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ EOF
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
$bootcfg
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ];
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "vmw_pvscsi" "xen_blkfront" ];
boot.initrd.kernelModules = [ "nvme" ];
fileSystems."/" = { device = "$rootfsdev"; fsType = "$rootfstype"; };
$swapcfg