mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			476 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			476 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  boot.initrd.kernelModules = [ "amdgpu" ];
 | 
						|
  services.xserver.videoDrivers = [ "amdgpu" ];
 | 
						|
  
 | 
						|
  hardware.opengl.extraPackages = with pkgs; [
 | 
						|
    rocm-opencl-icd
 | 
						|
    rocm-opencl-runtime
 | 
						|
    amdvlk
 | 
						|
  ];
 | 
						|
 | 
						|
  hardware.opengl.extraPackages32 = with pkgs; [
 | 
						|
    driversi686Linux.amdvlk
 | 
						|
  ];
 | 
						|
 | 
						|
  hardware.opengl = {
 | 
						|
    driSupport = lib.mkDefault true;
 | 
						|
    driSupport32Bit = lib.mkDefault true;
 | 
						|
  };
 | 
						|
 | 
						|
  environment.variables.AMD_VULKAN_ICD = "RADV";
 | 
						|
} 
 |