From ee10aadfcfaf1aaf4e0394210ba0629920881406 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 22 Oct 2017 19:38:21 +0200 Subject: Add base configuration for prefect --- modules/hardware/mouse.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 modules/hardware/mouse.nix (limited to 'modules/hardware/mouse.nix') diff --git a/modules/hardware/mouse.nix b/modules/hardware/mouse.nix new file mode 100644 index 0000000..b30d412 --- /dev/null +++ b/modules/hardware/mouse.nix @@ -0,0 +1,12 @@ +{ config, pkgs, ... }: + +{ services.xserver.config = '' + Section "InputClass" + Identifier "Mouse (No Acceleration)" + MatchIsPointer "yes" + MatchIsTouchpad "no" + Option "AccelerationProfile" "-1" + Option "AccelerationScheme" "none" + EndSection + ''; +} -- cgit 1.4.1