feat(krz01): enable proprietary drivers for nVidia

For the Tesla K80.

Signed-off-by: Ryan Lahfa <ryan@dgnum.eu>
This commit is contained in:
Ryan Lahfa 2024-10-08 13:49:47 +02:00
parent 862f004e3c
commit 4d689fee33
2 changed files with 6 additions and 0 deletions

View file

@ -8,6 +8,7 @@ lib.extra.mkConfig {
enabledServices = [
# INFO: This list needs to stay sorted alphabetically
# TODO: re-enable me when #139 is merged. "proxmox"
"nvidia-tesla-k80"
];
extraConfig = {

View file

@ -0,0 +1,5 @@
{ config, ... }:
{
# Tesla K80 is not supported by the latest driver.
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages_legacy_470;
}