mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			827 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			827 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  lib,
 | 
						|
  config,
 | 
						|
  ...
 | 
						|
}:
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../../common/cpu/intel
 | 
						|
    ../../../common/gpu/nvidia/prime.nix
 | 
						|
    ../../../common/gpu/nvidia/ada-lovelace
 | 
						|
    ../../../common/pc/laptop
 | 
						|
    ../../../common/pc/ssd
 | 
						|
    ../../../common/hidpi.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  boot.initrd.kernelModules = [ "nvidia" ];
 | 
						|
  boot.extraModulePackages = [
 | 
						|
    config.boot.kernelPackages.lenovo-legion-module
 | 
						|
    config.boot.kernelPackages.nvidia_x11
 | 
						|
  ];
 | 
						|
 | 
						|
  hardware = {
 | 
						|
    nvidia = {
 | 
						|
      modesetting.enable = lib.mkDefault true;
 | 
						|
      powerManagement.enable = lib.mkDefault true;
 | 
						|
      #
 | 
						|
      prime = {
 | 
						|
        intelBusId = "PCI:00:02:0";
 | 
						|
        nvidiaBusId = "PCI:01:00:0";
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
 | 
						|
  # Cooling management
 | 
						|
  services.thermald.enable = lib.mkDefault true;
 | 
						|
 | 
						|
  # √(2560² + 1600²) px / 16 in ≃ 189 dpi
 | 
						|
  services.xserver.dpi = 189;
 | 
						|
}
 |