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.
		
			
				
	
	
		
			16 lines
		
	
	
		
			365 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			365 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ ... }:
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../../common/gpu/amd
 | 
						|
    ../../../common/cpu/amd
 | 
						|
    ../../../common/cpu/amd/pstate.nix
 | 
						|
    ../../../common/pc/ssd
 | 
						|
    ../../../common/pc/laptop/hdd
 | 
						|
    #../../../common/hidpi.nix                #hidpi
 | 
						|
    ../.
 | 
						|
  ];
 | 
						|
 | 
						|
  boot.kernelParams = [ "i8042.nomux=1" "i8042.reset" ]; # Fix trackpoint and touchpad working only after reboot
 | 
						|
}
 | 
						|
 |