mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	Adds hardware profile for Lenovo ThinkPad P14s Intel Gen 2 with: - Intel Tiger Lake CPU support - NVIDIA Turing GPU with PRIME configuration - Suspend-to-RAM S3 sleep state configuration
		
			
				
	
	
		
			19 lines
		
	
	
		
			417 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			417 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  imports = [
 | 
						|
    ../../../../../common/gpu/nvidia/prime.nix
 | 
						|
    ../../../../../common/gpu/nvidia/turing
 | 
						|
    ../../../../../common/cpu/intel/tiger-lake
 | 
						|
    ../../../../../common/pc/laptop
 | 
						|
    ../../../../../common/pc/ssd
 | 
						|
    ../../../../../common/pc
 | 
						|
    ../.
 | 
						|
  ];
 | 
						|
 | 
						|
  hardware.nvidia.prime = {
 | 
						|
    intelBusId = "PCI:0:2:0";
 | 
						|
    nvidiaBusId = "PCI:1:0:0";
 | 
						|
  };
 | 
						|
 | 
						|
  services.xserver.videoDrivers = [ "modesetting" ];
 | 
						|
}
 |