Skip to content

Commit

Permalink
fix(libinputs): fix option name
Browse files Browse the repository at this point in the history
  • Loading branch information
misumisumi committed May 12, 2024
1 parent 45b99e0 commit fa8aabc
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions apps/xserver/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@
programs.light.enable = true;

services = {
libinput = {
enable = true;
mouse.naturalScrolling = true;
touchpad = {
tapping = true;
naturalScrolling = true;
accelSpeed = "0.6";
};
};
xserver = {
enable = true;
autorun = true;
Expand All @@ -22,16 +31,6 @@
options = "caps:nocaps"; # keyboard is managed home-manager
};

libinput = {
enable = true;
mouse.naturalScrolling = true;
touchpad = {
tapping = true;
naturalScrolling = true;
accelSpeed = "0.6";
};
};

displayManager = {
lightdm = {
enable = true;
Expand Down

0 comments on commit fa8aabc

Please sign in to comment.