nix-config/configs/nixos/touchpad.nix

16 lines
290 B
Nix
Raw Permalink Normal View History

{
config,
pkgs,
...
}: {
# Enable touchpad support (enabled default in most desktopManager).
2024-04-04 18:44:59 -05:00
services.xserver.libinput = {
enable = true;
disableWhileTyping = true;
naturalScrolling = true;
additionalOptions = ''
Option "PalmDetection" "True"
'';
};
}