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
flake.lock
nixosModules/nvidia

6
flake.lock generated
View file

@ -1484,11 +1484,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1723500019, "lastModified": 1723518597,
"narHash": "sha256-vyopypK31dSMJMKWFOimMwg1TuiHK6GEQelYyWhzQZw=", "narHash": "sha256-KxXdu9pGcBhUPkzbZ22dIu7XNaf0vRU0opMnN5R8VzQ=",
"owner": "matt1432", "owner": "matt1432",
"repo": "pr-tracker", "repo": "pr-tracker",
"rev": "f52407f41138f845068f51f26872cd5df6a0bcde", "rev": "55d5e7bf4c1a38845334e8f55fdaabe7d335fbdc",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

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