diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-06-16 14:44:20 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-06-16 14:45:54 -0500 |
commit | ec6673aad60d45f8deab71a327e0fb3c08f098a9 (patch) | |
tree | 724df44efcc7940e6efb394e717759eb5e4e4195 /hosts/tomato/hardware.nix | |
parent | e90a7b6952622b1306b3474d8f663680428b2020 (diff) | |
download | nixos-config-ec6673aad60d45f8deab71a327e0fb3c08f098a9.tar.gz nixos-config-ec6673aad60d45f8deab71a327e0fb3c08f098a9.zip |
hosts/tomato: Set trackpoint speed and sensitivity
Diffstat (limited to 'hosts/tomato/hardware.nix')
-rw-r--r-- | hosts/tomato/hardware.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hosts/tomato/hardware.nix b/hosts/tomato/hardware.nix index f08e788..884097b 100644 --- a/hosts/tomato/hardware.nix +++ b/hosts/tomato/hardware.nix @@ -33,6 +33,10 @@ in hardware.graphics.extraPackages = [pkgs.intel-vaapi-driver]; services.xserver.videoDrivers = ["intel"]; + services.udev.extraRules = '' + ACTION=="add", SUBSYSTEM=="input", ATTR{name}=="TPPS/2 IBM TrackPoint", ATTR{device/sensitivity}="255", ATTR{device/speed}="127" + ''; + this.bluetooth.enable = true; hardware.firmware = with pkgs; [ |