PMALE5GU3TLQ2ELFQUHUKQQP4BIZVLUP6GGF2SKHJW3HSOBDOZQAC
boot.kernelModules = [ "kvm-amd" "vfio-pci" ];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelParams = [
"vfio-pci.ids=10de:1380,10de:0fbc"
"video=vesa:off"
"vga=normal"
];
boot.kernelModules = [ "kvm-amd" "vfio-pci" "nouveau" ];
boot.kernelPackages = pkgs.linuxPackages_testing;
# Nescessary to prevent Xorg from freaking out about guest GPU
# (specifically with Radeon RX 6600 XT, was fine with GTX 750Ti)
services.xserver.videoDrivers = [];
services.xserver.extraConfig = ''
Section "Device"
Identifier "Nvidia GPU"
Driver "modesetting"
BusID "PCI:13:00:00"
EndSection
'';