2024-10-08 13:49:47 +02:00
|
|
|
{ config, ... }:
|
|
|
|
{
|
2024-10-08 17:29:29 +02:00
|
|
|
nixpkgs.config.nvidia.acceptLicense = true;
|
2024-10-08 13:49:47 +02:00
|
|
|
# Tesla K80 is not supported by the latest driver.
|
2024-10-08 17:29:29 +02:00
|
|
|
hardware.nvidia.package = config.boot.kernelPackages.nvidia_x11_legacy470;
|
|
|
|
# Don't ask.
|
|
|
|
services.xserver.videoDrivers = [ "nvidia" ];
|
2024-10-08 13:49:47 +02:00
|
|
|
}
|