diff --git a/system/hardware/libinput.nix b/system/hardware/libinput.nix new file mode 100644 index 0000000..5afa7f4 --- /dev/null +++ b/system/hardware/libinput.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: + +{ + services.libinput = { + enable = true; + mouse.naturalScrolling = true; + touchpad.naturalScrolling = true; + }; + environment.systemPackages = [ pkgs.libinput ]; +}