summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2024-08-08 22:21:09 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2024-08-08 22:21:09 +0530
commitf4e27f7d82aad04b95ae8238c3a9d21b16a43830 (patch)
tree10be1f81fd5d058f6f48ca315bd175d17aae4aa0 /modules
parentabc69428ed3db1a58634cbcec24f9037b43145a0 (diff)
update
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" ];
}