mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	fixes https://github.com/NixOS/nixos-hardware/issues/1114 and tlp also no longer recommands it.
		
			
				
	
	
		
			10 lines
		
	
	
		
			184 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			184 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ ... }: {
 | 
						|
  imports = [
 | 
						|
    ../.
 | 
						|
    ../../../common/pc/laptop/ssd
 | 
						|
  ];
 | 
						|
 | 
						|
  # Somehow psmouse does not load automatically on boot for me
 | 
						|
  boot.initrd.kernelModules = [ "psmouse" ];
 | 
						|
}
 |