mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			324 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			324 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, ... }:
 | 
						|
{
 | 
						|
  hardware.nvidia.modesetting.enable = true;
 | 
						|
  hardware.opengl.driSupport32Bit = true;
 | 
						|
  hardware.opengl.enable = true;
 | 
						|
 | 
						|
  hardware.nvidia.prime = {
 | 
						|
    # Bus ID of the Intel GPU.
 | 
						|
    intelBusId = lib.mkDefault "PCI:0:2:0";
 | 
						|
    # Bus ID of the NVIDIA GPU.
 | 
						|
    nvidiaBusId = lib.mkDefault "PCI:1:0:0";
 | 
						|
  };
 | 
						|
}
 |