🐛 [thinkpad] Fix hypr overrides not overriding

This commit is contained in:
Martin Berg Alstad 2025-04-16 13:50:22 +02:00
parent ed6a435d79
commit 8f1782eccd
Signed by: martials
GPG Key ID: 848D71DE0590C199
2 changed files with 8 additions and 8 deletions

View File

@ -4,7 +4,7 @@
}: }:
{ {
programs.hyprpanel.settings.layout."bar.layouts"."*".right = lib.mkDefault [ programs.hyprpanel.settings.layout."bar.layouts"."*".right = lib.mkForce [
"kbinput" "kbinput"
"volume" "volume"
"network" "network"

View File

@ -19,15 +19,15 @@
]; ];
input = { input = {
sensitivity = lib.mkDefault 0.4; # -1.0 - 1.0, 0 means no modification. sensitivity = lib.mkForce 0.4; # -1.0 - 1.0, 0 means no modification.
touchpad.natural_scroll = lib.mkDefault true; touchpad.natural_scroll = lib.mkForce true;
}; };
gestures = lib.mkDefault { gestures = {
workspace_swipe = true; workspace_swipe = lib.mkForce true;
workspace_swipe_distance = 150; workspace_swipe_distance = lib.mkForce 150;
workspace_swipe_min_speed_to_force = 0; workspace_swipe_min_speed_to_force = lib.mkForce 0;
workspace_swipe_cancel_ratio = 0.5; workspace_swipe_cancel_ratio = lib.mkForce 0.5;
}; };
}; };
} }