mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-13 22:49:41 +01:00
10 lines
115 B
Nix
10 lines
115 B
Nix
{ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
hardware.trackpoint = mkDefault {
|
|
enable = true;
|
|
emulateWheel = true;
|
|
};
|
|
}
|