mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 12:12:56 +00:00
18 lines
319 B
Nix
18 lines
319 B
Nix
|
{ pkgs, ... }: {
|
||
|
|
||
|
# Mouse config
|
||
|
services.ratbagd.enable = true;
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
libratbag # Mouse adjustments
|
||
|
piper # Mouse adjustments GUI
|
||
|
];
|
||
|
|
||
|
services.xserver.libinput.mouse = {
|
||
|
# Disable mouse acceleration
|
||
|
accelProfile = "flat";
|
||
|
accelSpeed = "1.15";
|
||
|
};
|
||
|
|
||
|
}
|