diff options
Diffstat (limited to 'machines/boron.nix')
-rw-r--r-- | machines/boron.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/machines/boron.nix b/machines/boron.nix index 6cfa06d..a838326 100644 --- a/machines/boron.nix +++ b/machines/boron.nix @@ -81,6 +81,21 @@ services.xserver.xkbVariant = ""; services.xserver.xkbOptions = "caps:ctrl_modifier"; + # touchpad stuff + services.xserver.libinput = { + enable = true; + touchpad = { + tapping = true; + naturalScrolling = true; + scrollMethod = "twofinger"; + clickMethod = "clickfinger"; + tappingDragLock = true; + additionalOptions = '' + Option "Gesture" "on" + ''; + }; + }; + # Enable CUPS to print documents. services.printing.enable = true; |