summary refs log tree commit diff stats
path: root/system/settings/hardware/mouse.nix
diff options
context:
space:
mode:
authorAlan Pearce2022-06-11 16:03:15 +0200
committerAlan Pearce2022-06-12 17:19:26 +0200
commit298db108f052348a83581a315396ca1bd8d584e2 (patch)
treed5c1503b72787737646f877c62080cbf6dc14168 /system/settings/hardware/mouse.nix
parente578939110d38986e009affa98a946a8b81cad5c (diff)
downloadnixfiles-298db108f052348a83581a315396ca1bd8d584e2.tar.lz
nixfiles-298db108f052348a83581a315396ca1bd8d584e2.tar.zst
nixfiles-298db108f052348a83581a315396ca1bd8d584e2.zip
update settings to build on 22.05
Diffstat (limited to 'system/settings/hardware/mouse.nix')
-rw-r--r--system/settings/hardware/mouse.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/system/settings/hardware/mouse.nix b/system/settings/hardware/mouse.nix
index d43dba37..83e76d71 100644
--- a/system/settings/hardware/mouse.nix
+++ b/system/settings/hardware/mouse.nix
@@ -3,7 +3,9 @@
 { 
   services.xserver.libinput = {
     enable = true;
-    accelProfile = "flat";
-    accelSpeed = "0";
+    mouse = {
+      accelProfile = "flat";
+      accelSpeed = "0";
+    };
   };
 }