mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	The common/pc/laptop/ssd folder was apparently moved a level up and was replaced by a symlink to keep things working. We can consolidate this now.
		
			
				
	
	
		
			41 lines
		
	
	
		
			849 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			849 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.extraModulePackages = [config.boot.kernelPackages.lenovo-legion-module];
 | 
						|
 | 
						|
  hardware = {
 | 
						|
    nvidia = {
 | 
						|
      powerManagement.enable = lib.mkDefault true;
 | 
						|
      #
 | 
						|
      prime = {
 | 
						|
        intelBusId = "PCI:00:02:0";
 | 
						|
        nvidiaBusId = "PCI:01:00:0";
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
 | 
						|
  # Sound speaker fix, see #1039
 | 
						|
  boot.extraModprobeConfig = ''
 | 
						|
    options snd-hda-intel model=auto
 | 
						|
  '';
 | 
						|
 | 
						|
  boot.blacklistedKernelModules = [ "snd_soc_avs" ];
 | 
						|
 | 
						|
  # Cooling management
 | 
						|
  services.thermald.enable = lib.mkDefault true;
 | 
						|
 | 
						|
  # √(2560² + 1600²) px / 16 in ≃ 189 dpi
 | 
						|
  services.xserver.dpi = 189;
 | 
						|
}
 |