17 lines
		
	
	
	
		
			318 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			318 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  config,
 | 
						|
  pkgs,
 | 
						|
  ...
 | 
						|
}: {
 | 
						|
  services.libinput = {
 | 
						|
    # Enable touchpad support (enabled default in most desktopManager).
 | 
						|
    enable = true;
 | 
						|
    touchpad = {
 | 
						|
      disableWhileTyping = true;
 | 
						|
      naturalScrolling = true;
 | 
						|
      additionalOptions = ''
 | 
						|
        Option "PalmDetection" "True"
 | 
						|
      '';
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |