mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			340 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			340 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ ... }: {
 | 
						|
  # Reference to hardware: https://certification.ubuntu.com/hardware/202004-27844
 | 
						|
  imports = [
 | 
						|
    ../.
 | 
						|
    ../../../common/cpu/intel
 | 
						|
    ../../../common/pc/laptop/acpi_call.nix
 | 
						|
    ../../../common/pc/laptop/ssd
 | 
						|
  ];
 | 
						|
 | 
						|
  # Somehow psmouse does not load automatically on boot for me
 | 
						|
  boot.initrd.kernelModules = [ "psmouse" ];
 | 
						|
}
 |