11 lines
115 B
Nix
11 lines
115 B
Nix
{ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
hardware.trackpoint = mkDefault {
|
|
enable = true;
|
|
emulateWheel = true;
|
|
};
|
|
}
|