nixos-config/system/hardware/libinput.nix
2024-12-30 15:29:58 +08:00

11 lines
191 B
Nix

{ pkgs, ... }:
{
services.libinput = {
enable = true;
mouse.naturalScrolling = true;
touchpad.naturalScrolling = true;
};
environment.systemPackages = [ pkgs.libinput ];
}