aboutsummaryrefslogtreecommitdiff
path: root/nix/modules/cuda.nix
blob: d5d9b7cf46ea7470dece47b6c3dbb18bd76e821f (plain)
1
2
3
4
5
6
7
8
9
{ config, lib, pkgs, ... }:
{
  environment.systemPackages = (if config.monorepo.profiles.cuda.enable then with pkgs; [
	cudatoolkit
	cudaPackages.cudnn
	cudaPackages.libcublas
	linuxPackages.nvidia_x11
  ] else []);
}