mediaserver: use nvidia legacy_535 (available on stable channel)
legacy_580 only exists on unstable nixpkgs and isn't backported to 25.11. The Maxwell GM206 (Quadro M2000) is supported through the 535.x branch — last production driver to ship Maxwell support — so this is a clean swap with no expected impact on Jellyfin's NVENC. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
34a45af357
commit
877796173f
1 changed files with 4 additions and 1 deletions
|
|
@ -65,7 +65,10 @@
|
||||||
modesetting.enable = true;
|
modesetting.enable = true;
|
||||||
open = false; # Maxwell architecture does not support the open kernel module
|
open = false; # Maxwell architecture does not support the open kernel module
|
||||||
nvidiaSettings = false; # headless server, no settings GUI needed
|
nvidiaSettings = false; # headless server, no settings GUI needed
|
||||||
package = config.boot.kernelPackages.nvidiaPackages.legacy_580;
|
# legacy_535 is the latest branch that still supports Maxwell GM206 (M2000)
|
||||||
|
# and is the newest available on the stable nixpkgs channel. Newer "legacy"
|
||||||
|
# branches (e.g. 580) only exist on unstable.
|
||||||
|
package = config.boot.kernelPackages.nvidiaPackages.legacy_535;
|
||||||
};
|
};
|
||||||
services.xserver.videoDrivers = [ "nvidia" ];
|
services.xserver.videoDrivers = [ "nvidia" ];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue