Talk:Xorg

From NixOS Wiki
Revision as of 07:11, 4 July 2021 by imported>Ursi (Created page with "I believe you can disable mouse acceleration with a mouse by using <pre> services.xserver.libinput = { enable = true; mouse = { accelProfile = "flat"; ac...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

I believe you can disable mouse acceleration with a mouse by using

services.xserver.libinput =
  { enable = true;

    mouse =
      { accelProfile = "flat";
        accelSpeed = "0";
      };
  };

This is what I'm using, and I do not have any mouse acceleration afaict.