summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/virtualization.nix24
1 files changed, 12 insertions, 12 deletions
diff --git a/modules/virtualization.nix b/modules/virtualization.nix
index 74a879c..d8d972f 100644
--- a/modules/virtualization.nix
+++ b/modules/virtualization.nix
@@ -48,18 +48,18 @@
# Use the custom kernel package set
boot.kernelPackages = pkgs.linuxPackages_latest;
- boot.kernelPatches = [
- {
- # https://github.com/Kinsteen/win10-gpu-passthrough/blob/main/pat_patch.diff
- name = "disable-pat-check";
- patch = ../dist/disable-pat-check.patch;
- }
- {
- # https://aur.archlinux.org/cgit/aur.git/tree/1001-6.8.0-add-acs-overrides.patch?h=linux-vfio
- name = "acso";
- patch = ../dist/acso.patch;
- }
- ];
+ # boot.kernelPatches = [
+ # {
+ # # https://github.com/Kinsteen/win10-gpu-passthrough/blob/main/pat_patch.diff
+ # name = "disable-pat-check";
+ # patch = ../dist/disable-pat-check.patch;
+ # }
+ # {
+ # # https://aur.archlinux.org/cgit/aur.git/tree/1001-6.8.0-add-acs-overrides.patch?h=linux-vfio
+ # name = "acso";
+ # patch = ../dist/acso.patch;
+ # }
+ # ];
boot.kernelParams = [ "skippatcheck" "pcie_acs_override=downstream,multifunction" ];
}