fix(nvidia): revert to driver 555 to fix memory leaks

This commit is contained in:
matt1432 2024-08-13 00:07:59 -04:00
parent 9724f5f10e
commit 6335bb3f46
2 changed files with 6 additions and 6 deletions
nixosModules/nvidia

View file

@ -61,13 +61,13 @@ in {
open = false;
package = let
inherit (config.boot.kernelPackages.nvidiaPackages) stable beta;
inherit (config.boot.kernelPackages.nvidiaPackages) stable latest;
in
if !cfg.enableWayland
then stable
else
# Get newest beta driver version for better Wayland support
beta;
# Stick to 555 driver version for better Wayland support
latest;
};
environment.systemPackages =