summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--machines/boron.nix15
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;