initial commit

This commit is contained in:
2024-12-31 04:29:58 -05:00
commit 69ed9b2d4d
41 changed files with 4509 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
{ config, pkgs, ... }: {
services.libinput = {
enable = false;
touchpad.naturalScrolling = true;
};
services.xserver.synaptics = {
enable = true;
palmMinZ = 20;
palmDetect = true;
tapButtons = false;
# scrollDelta = 111;
twoFingerScroll = true;
vertTwoFingerScroll = true;
horizTwoFingerScroll = false;
accelFactor = "0.0557414"; # don't question
fingersMap = [
1
3
2
];
palmMinWidth = 5;
minSpeed = "0.6";
maxSpeed = "1.0";
additionalOptions = ''
Option "VertScrollDelta" "-111"
Option "HorizScrollDelta" "-111"
Option "FingerLow" "25"
Option "FingerHigh" "30"
Option "MaxTapTime" "0"
'';
};
}