mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	1 default one, with nvidia working and intel working, needs optirun to run application with nvidia 2 intel only, I am using this as my daily driver for long time, only intel is turned on and nvidia is turned off and doesn't drain any power. 3 nvidia only, intel is dissabled and nvidia is picked as default gpu, no need to fiddle with optirun etc, good for gpu heavy application. All these settings needs to reboot to work properly
		
			
				
	
	
		
			25 lines
		
	
	
		
			778 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			778 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../../common/cpu/intel
 | 
						|
    ../../../common/pc/laptop
 | 
						|
    ./xps-common.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  # This configuration makes intel default and optionaly applications could run nvidia with optirun.
 | 
						|
  # To Optimize for your use case import intel or nvidia only configuration instead
 | 
						|
  # xps-9560/intel
 | 
						|
  # or
 | 
						|
  # xps-9560/nvidia
 | 
						|
 | 
						|
 | 
						|
 ##### bumblebee working, needs reboot to take affect and to use it run: optirun "<application>"
 | 
						|
 services.xserver.videoDrivers = lib.mkDefault [ "intel" "nvidia" ];
 | 
						|
 boot.blacklistedKernelModules = lib.mkDefault [ "nouveau" "bbswitch" ];
 | 
						|
 boot.extraModulePackages = lib.mkDefault [ pkgs.linuxPackages.nvidia_x11 ];
 | 
						|
 hardware.bumblebee.enable = lib.mkDefault true;
 | 
						|
 hardware.bumblebee.pmMethod = lib.mkDefault "none";
 | 
						|
 | 
						|
}
 |