mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17: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.
		
			
				
	
	
		
			16 lines
		
	
	
		
			331 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			331 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../../common/cpu/intel/lunar-lake
 | 
						|
    ../../../common/pc/laptop
 | 
						|
    ../../../common/pc/ssd
 | 
						|
  ];
 | 
						|
 | 
						|
  # The touchpad uses I²C, so PS/2 is unnecessary
 | 
						|
  boot.blacklistedKernelModules = [ "psmouse" ];
 | 
						|
 | 
						|
  # Recommended in NixOS/nixos-hardware#127
 | 
						|
  services.thermald.enable = lib.mkDefault true;
 | 
						|
}
 |