From ea6d4ba37e608a32407cb60e3bfcf17aa9db6ef8 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Sat, 18 May 2019 15:50:54 +0200 Subject: [PATCH] configure trackpoint speed and sensitivity --- nixos/hardware-configuration.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/nixos/hardware-configuration.nix b/nixos/hardware-configuration.nix index d0a1d47..aebddf9 100644 --- a/nixos/hardware-configuration.nix +++ b/nixos/hardware-configuration.nix @@ -1,6 +1,3 @@ -# Do not modify this file! It was generated by ‘nixos-generate-config’ -# and may be overwritten by future invocations. Please make changes -# to /etc/nixos/configuration.nix instead. { config, lib, pkgs, ... }: { @@ -33,4 +30,10 @@ nix.maxJobs = lib.mkDefault 4; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; + + hardware.trackpoint = { + enable = true; + sensitivity = 240; + speed = 160; + }; }