From 39e54d0e143402967833fc8826d304d24aacee18 Mon Sep 17 00:00:00 2001 From: Alex Mickelson Date: Sat, 15 Feb 2025 10:43:53 -0700 Subject: [PATCH] pci passthrough --- nix/modules/pci-passthrough.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/modules/pci-passthrough.nix b/nix/modules/pci-passthrough.nix index b7caeb2..ef70817 100644 --- a/nix/modules/pci-passthrough.nix +++ b/nix/modules/pci-passthrough.nix @@ -19,7 +19,7 @@ in { pkgs, lib, config, ... }: { kernelParams = [ "intel_iommu=on" - ("vfio-pci.ids=" + lib.concatStringsSep "," gpuIDs); + ("vfio-pci.ids=" + lib.concatStringsSep "," gpuIDs) ] };