From 870357643c327e6095fe23cd5353adba781cc7a5 Mon Sep 17 00:00:00 2001 From: Zach Fleeman Date: Wed, 3 Dec 2025 17:28:03 -0500 Subject: [PATCH] Nvidia RTX Pro Support Support detection of Nvidia RTX Pro GPU during install --- install/config/hardware/nvidia.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/config/hardware/nvidia.sh b/install/config/hardware/nvidia.sh index 125addf6ac..12db7d6972 100644 --- a/install/config/hardware/nvidia.sh +++ b/install/config/hardware/nvidia.sh @@ -4,7 +4,7 @@ if [ -n "$NVIDIA" ]; then # Check which kernel is installed and set appropriate headers package KERNEL_HEADERS="$(pacman -Qqs '^linux(-zen|-lts|-hardened)?$' | head -1)-headers" - if echo "$NVIDIA" | grep -qE "RTX [2-9][0-9]|GTX 16"; then + if echo "$NVIDIA" | grep -qE "RTX Pro [1-9]|RTX [2-9][0-9]|GTX 16"; then # Turing (16xx, 20xx), Ampere (30xx), Ada (40xx), and newer recommend the open-source kernel modules PACKAGES=(nvidia-open-dkms nvidia-utils lib32-nvidia-utils libva-nvidia-driver) elif echo "$NVIDIA" | grep -qE "GTX 9|GTX 10|Quadro P"; then