mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	Also rename deprecated `hardware.nvidia.optimus_prime.*' to `hardware.nvidia.prime.*' since NixOS 20.09. > The hardware.nvidia.optimus_prime.enable service has been renamed to > hardware.nvidia.prime.sync.enable and has many new enhancements. > Related nvidia prime settings may have also changed. See https://nixos.org/manual/nixos/stable/release-notes.html#sec-release-20.09
		
			
				
	
	
		
			23 lines
		
	
	
		
			492 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			492 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../../../common/cpu/intel
 | 
						|
    ../../../../common/gpu/nvidia.nix
 | 
						|
    ../../../../common/pc/laptop
 | 
						|
    ../xps-common.nix
 | 
						|
  ];
 | 
						|
 | 
						|
 | 
						|
  # This runs only nvidia, great for games or heavy use of render applications
 | 
						|
 | 
						|
  ##### disable intel, run nvidia only and as default
 | 
						|
  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";
 | 
						|
  };
 | 
						|
}
 |