🐛 [thinkpad] Fix hypr overrides not overriding
This commit is contained in:
parent
ed6a435d79
commit
8f1782eccd
@ -4,7 +4,7 @@
|
||||
}:
|
||||
|
||||
{
|
||||
programs.hyprpanel.settings.layout."bar.layouts"."*".right = lib.mkDefault [
|
||||
programs.hyprpanel.settings.layout."bar.layouts"."*".right = lib.mkForce [
|
||||
"kbinput"
|
||||
"volume"
|
||||
"network"
|
||||
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user