all repos — nixfiles @ ee10aadfcfaf1aaf4e0394210ba0629920881406

System and user configuration, managed by nix and home-manager

Add base configuration for prefect

Alan Pearce
commit

ee10aadfcfaf1aaf4e0394210ba0629920881406

parent

90267cf07027564be14043edf72bbe622efc76d8

1 file changed, 12 insertions(+), 0 deletions(-)

changed files
A 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 + ''; +}