From e25a00a38ced28ebdbd60a5d884cd69e3c8c854a Mon Sep 17 00:00:00 2001 From: George <91995566+Nm1ss@users.noreply.github.com> Date: Thu, 8 Jan 2026 07:53:11 +0100 Subject: [PATCH] Update NVIDIA GPU detection for legacy support on professional/workstation cards --- install/config/hardware/nvidia.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/config/hardware/nvidia.sh b/install/config/hardware/nvidia.sh index dba1e6b2..543174e2 100644 --- a/install/config/hardware/nvidia.sh +++ b/install/config/hardware/nvidia.sh @@ -7,8 +7,8 @@ if [ -n "$NVIDIA" ]; then if echo "$NVIDIA" | grep -qE "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"; then - # Pascal (10xx) and Maxwell (9xx) use legacy branch that can only be installed from AUR + elif echo "$NVIDIA" | grep -qE "GTX 9|GTX 10|Quadro P"; then + # Pascal (10xx or Quadro Pxxx) and Maxwell (9xx) use legacy branch that can only be installed from AUR PACKAGES=(nvidia-580xx-dkms nvidia-580xx-utils lib32-nvidia-580xx-utils) fi # Bail if no supported GPU