mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			304 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			304 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  imports = [
 | 
						|
    ../../../common/cpu/intel
 | 
						|
    ../../../common/pc/laptop
 | 
						|
    ../../../common/pc/ssd
 | 
						|
  ];
 | 
						|
 | 
						|
  # Required to allow the touchpad to work
 | 
						|
  boot.kernelParams = [ "i8042.nopnp=1" ];
 | 
						|
  boot.blacklistedKernelModules = [ "i2c_hid" "i2c_hid_acpi" ];
 | 
						|
  boot.kernelModules = [ "synaptics_i2c"];
 | 
						|
}
 |