mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			420 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			420 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  imports = [
 | 
						|
    ../../../common/cpu/intel
 | 
						|
    ../../../common/gpu/intel/kaby-lake
 | 
						|
    ../../../common/pc/laptop
 | 
						|
    ./xps-common.nix
 | 
						|
    ../../../common/gpu/nvidia
 | 
						|
    ../../../common/gpu/nvidia/pascal
 | 
						|
  ];
 | 
						|
 | 
						|
  hardware.graphics.enable = true;
 | 
						|
 | 
						|
  hardware.nvidia.modesetting.enable = true;
 | 
						|
 | 
						|
  hardware.nvidia.prime = {
 | 
						|
  # integrated
 | 
						|
    intelBusId = "PCI:0:2:0";
 | 
						|
 | 
						|
  # dedicated
 | 
						|
    nvidiaBusId = "PCI:1:0:0";
 | 
						|
  };
 | 
						|
}
 |