change touchpad setting

This commit is contained in:
ama 2024-12-30 15:29:58 +08:00
parent 3c32c0289c
commit fa18943dbf

View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
{
services.libinput = {
enable = true;
mouse.naturalScrolling = true;
touchpad.naturalScrolling = true;
};
environment.systemPackages = [ pkgs.libinput ];
}