Skip to content

Commit

Permalink
Fix deprecation warning regarding libinput
Browse files Browse the repository at this point in the history
  • Loading branch information
rake5k committed Sep 28, 2024
1 parent 66adbd5 commit b548be1
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions nixos/roles/desktop/mobile/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,13 @@ in
tlp.enable = true;
upower.enable = true;

xserver = {
# Touchpad settings
libinput = {
enable = true;
touchpad = {
naturalScrolling = true;
disableWhileTyping = true;
sendEventsMode = "disabled-on-external-mouse";
};
# Touchpad settings
libinput = {
enable = true;
touchpad = {
naturalScrolling = true;
disableWhileTyping = true;
sendEventsMode = "disabled-on-external-mouse";
};
};
};
Expand Down

0 comments on commit b548be1

Please sign in to comment.