Files
nixos/hyprland/hypr/input.nix

21 lines
408 B
Nix

{
wayland.windowManager.hyprland.settings = {
input = {
kb_layout = "hu";
follow_mouse = 1;
sensitivity = 0.1; # -1.0 - 1.0, 0 means no modification.
touchpad = {
natural_scroll = true;
clickfinger_behavior = 1;
};
};
gesture = [
"3, horizontal, workspace"
"3, up, dispatcher, overview:open"
];
hyprexpo-gesture = "3, down, expo";
};
}