From 89f107b4079acca9fc774cf9e2812f35186a30f3 Mon Sep 17 00:00:00 2001 From: NullBite Date: Sun, 23 Feb 2025 20:20:49 -0500 Subject: [PATCH] system(nvidia): switch to latest --- system/hardware/nvidia.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/hardware/nvidia.nix b/system/hardware/nvidia.nix index b7ed64c..eb05722 100644 --- a/system/hardware/nvidia.nix +++ b/system/hardware/nvidia.nix @@ -71,7 +71,7 @@ in # Optionally, you may need to select the appropriate driver version for your specific GPU. package = let inherit (config.boot.kernelPackages.nvidiaPackages) production stable latest beta; - in lib.mkDefault beta; + in lib.mkDefault latest; }; }; }