mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			552 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			552 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../common/pc/laptop/ssd
 | 
						|
    ../../common/cpu/intel
 | 
						|
    ../../common/gpu/nvidia/prime.nix
 | 
						|
    ../../common/pc/laptop
 | 
						|
  ];
 | 
						|
 | 
						|
  boot.kernelParams = [
 | 
						|
    # For Power consumption in case of NVME SSD
 | 
						|
    # was installed.
 | 
						|
    "nvme.noacpi=1"
 | 
						|
 | 
						|
    # For fixing interferences with Fn- action keys
 | 
						|
    "video.report_key_events=0"
 | 
						|
  ];
 | 
						|
 | 
						|
  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";
 | 
						|
  };
 | 
						|
}
 |