feat(krz01): enable proprietary drivers for nVidia #138

Merged
thubrecht merged 1 commit from nvidia into main 2024-10-08 17:05:41 +02:00
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;
}