mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	fix(common/gpu/amd): use new rocmPackages
This commit is contained in:
		
				
					committed by
					
						
						mergify[bot]
					
				
			
			
				
	
			
			
			
						parent
						
							3d4a18fac8
						
					
				
				
					commit
					fb6af288f6
				
			@@ -10,7 +10,7 @@
 | 
			
		||||
    "use amdvlk drivers instead mesa radv drivers"
 | 
			
		||||
  );
 | 
			
		||||
  options.hardware.amdgpu.opencl = lib.mkEnableOption (lib.mdDoc
 | 
			
		||||
    "rocm opencl runtime (Install rocm-opencl-icd and rocm-opencl-runtime)"
 | 
			
		||||
    "rocm opencl runtime (Install rocmPackages.clr and rocmPackages.clr.icd)"
 | 
			
		||||
  ) // {
 | 
			
		||||
    default = true;
 | 
			
		||||
  };
 | 
			
		||||
@@ -37,10 +37,10 @@
 | 
			
		||||
      ];
 | 
			
		||||
    })
 | 
			
		||||
    (lib.mkIf config.hardware.amdgpu.opencl {
 | 
			
		||||
      hardware.opengl.extraPackages = with pkgs; [
 | 
			
		||||
        rocm-opencl-icd
 | 
			
		||||
        rocm-opencl-runtime
 | 
			
		||||
      ];
 | 
			
		||||
      hardware.opengl.extraPackages =
 | 
			
		||||
        if pkgs ? rocmPackages.clr
 | 
			
		||||
        then with pkgs.rocmPackages; [ clr clr.icd ]
 | 
			
		||||
        else with pkgs; [ rocm-opencl-icd rocm-opencl-runtime ];
 | 
			
		||||
    })
 | 
			
		||||
  ];
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user