mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			518 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			518 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../common/cpu/intel
 | 
						|
    ../../common/gpu/nvidia/prime.nix
 | 
						|
    ../../common/gpu/nvidia/ada-lovelace
 | 
						|
    ../../common/pc/laptop
 | 
						|
    ../../common/pc/ssd
 | 
						|
  ];
 | 
						|
 | 
						|
  # Enables ACPI platform profiles
 | 
						|
  boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
 | 
						|
    kernelModules = [ "hp-wmi" ];
 | 
						|
  };
 | 
						|
 | 
						|
  # Enables Wifi and Bluetooth
 | 
						|
  hardware.enableRedistributableFirmware = true;
 | 
						|
 | 
						|
  hardware.nvidia.prime = {
 | 
						|
    intelBusId = "PCI:0:2:0";
 | 
						|
    nvidiaBusId = "PCI:1:0:0";
 | 
						|
  };
 | 
						|
}
 |