fix(tanzanite): VM crashing under workloads
Refer to linked git issue, but the tldr is that AMD gpus have a crashing issue when they are passed to a guest VM in linux host kernels greater than 6.6.
This commit is contained in:
parent
67a2858dd9
commit
77c28ceb4e
1 changed files with 4 additions and 0 deletions
|
@ -10,6 +10,10 @@
|
|||
boot.kernelModules = [ "kvm-intel" "vfio-pci" ];
|
||||
boot.extraModulePackages = lib.attrVals [ "rtl8812au" ] config.boot.kernelPackages;
|
||||
|
||||
# https://gitlab.com/qemu-project/qemu/-/issues/2574
|
||||
# Might bisect or something if I get around to it
|
||||
boot.kernelPackages = pkgs.linuxPackages_6_6;
|
||||
|
||||
boot.kernelParams = [
|
||||
"loglevel=3"
|
||||
"iommu=pt"
|
||||
|
|
Loading…
Reference in a new issue