From 24efa3edca3ec0870a4757dc5dbfade43611ff9b Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 31 May 2021 20:30:36 +0200 Subject: [PATCH] machines: aramis: hardware: enable trackpoint --- machines/aramis/hardware.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/machines/aramis/hardware.nix b/machines/aramis/hardware.nix index 86eaf28..3ca556c 100644 --- a/machines/aramis/hardware.nix +++ b/machines/aramis/hardware.nix @@ -22,5 +22,13 @@ powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; - hardware.cpu.intel.updateMicrocode = true; + hardware = { + cpu.intel.updateMicrocode = true; + + trackpoint = { + enable = true; + + emulateWheel = true; # Holding middle buttons allows scrolling + }; + }; }