mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			370 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			370 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports =
 | 
						|
  [
 | 
						|
    ../../common/cpu/intel
 | 
						|
    ../../common/gpu/nvidia
 | 
						|
    ../../common/gpu/nvidia/prime.nix
 | 
						|
    ../../common/pc/laptop
 | 
						|
    ../../common/pc/ssd
 | 
						|
    ../battery.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  hardware.nvidia =
 | 
						|
  {
 | 
						|
    modesetting.enable = lib.mkDefault true;
 | 
						|
 | 
						|
    prime =
 | 
						|
    {
 | 
						|
      intelBusId  = "PCI:0:2:0";
 | 
						|
      nvidiaBusId = "PCI:1:0:0";
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |