🐛 [thinkpad] Fix hypr overrides not overriding
This commit is contained in:
@ -19,15 +19,15 @@
|
||||
];
|
||||
|
||||
input = {
|
||||
sensitivity = lib.mkDefault 0.4; # -1.0 - 1.0, 0 means no modification.
|
||||
touchpad.natural_scroll = lib.mkDefault true;
|
||||
sensitivity = lib.mkForce 0.4; # -1.0 - 1.0, 0 means no modification.
|
||||
touchpad.natural_scroll = lib.mkForce true;
|
||||
};
|
||||
|
||||
gestures = lib.mkDefault {
|
||||
workspace_swipe = true;
|
||||
workspace_swipe_distance = 150;
|
||||
workspace_swipe_min_speed_to_force = 0;
|
||||
workspace_swipe_cancel_ratio = 0.5;
|
||||
gestures = {
|
||||
workspace_swipe = lib.mkForce true;
|
||||
workspace_swipe_distance = lib.mkForce 150;
|
||||
workspace_swipe_min_speed_to_force = lib.mkForce 0;
|
||||
workspace_swipe_cancel_ratio = lib.mkForce 0.5;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user