mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			426 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			426 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../.
 | 
						|
    ../../../common/cpu/intel/kaby-lake
 | 
						|
    ../../../common/gpu/nvidia/prime.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  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";
 | 
						|
  };
 | 
						|
 | 
						|
  boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.6") pkgs.linuxPackages_latest;
 | 
						|
}
 |