Talk:Xorg

From NixOS Wiki

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.