From 40a29bddc83f9a060be5004c848b9e909587c6e3 Mon Sep 17 00:00:00 2001 From: notgne2 Date: Wed, 6 Oct 2021 13:49:38 -0700 Subject: [PATCH] flat accel by default --- modules/workstation.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/workstation.nix b/modules/workstation.nix index c61dee7..9ed9e30 100644 --- a/modules/workstation.nix +++ b/modules/workstation.nix @@ -139,6 +139,11 @@ in # Important for steam fonts.fontconfig.cache32Bit = lib.mkDefault true; services.xserver = { + libinput = { + enable = true; + mouse.accelProfile = "flat"; + touchpad.accelProfile = "flat"; + }; dpi = lib.mkDefault 96; layout = lib.mkDefault "us"; libinput.enable = lib.mkDefault true;