mirror of
https://github.com/librephoenix/nixos-config
synced 2025-04-21 01:34:34 +05:30
11 lines
191 B
Nix
11 lines
191 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.libinput = {
|
|
enable = true;
|
|
mouse.naturalScrolling = true;
|
|
touchpad.naturalScrolling = true;
|
|
};
|
|
environment.systemPackages = [ pkgs.libinput ];
|
|
}
|