nvidia/pascal: use legacy_580 drivers by default

590 and higher have dropped support for Pascal
This commit is contained in:
langsjo 2026-04-27 00:36:36 +03:00 committed by Doron Behar
parent 2564d80414
commit f8efd451e7

View file

@ -1,7 +1,8 @@
{ lib, ... }: { config, lib, ... }:
{ {
imports = [ ../. ]; imports = [ ../. ];
# The open source driver does not support Pascal GPUs. # The open source driver does not support Pascal GPUs.
hardware.nvidia.open = false; hardware.nvidia.open = false;
hardware.nvidia.package = lib.mkDefault config.boot.kernelPackages.nvidiaPackages.legacy_580;
} }