2024-08-16 06:42:35 -07:00
|
|
|
{lib, ...}: {
|
|
|
|
imports = [../common.nix];
|
2024-08-07 08:17:21 -07:00
|
|
|
wayland.windowManager.hyprland.settings.input.touchpad = {
|
|
|
|
natural_scroll = true;
|
|
|
|
disable_while_typing = true;
|
|
|
|
clickfinger_behavior = true;
|
|
|
|
tap-to-click = false;
|
|
|
|
scroll_factor = 0.5;
|
|
|
|
};
|
2024-08-21 18:31:13 -07:00
|
|
|
wayland.windowManager.hyprland.settings.input.sensitivity = lib.mkForce "0.0";
|
2024-08-07 08:17:21 -07:00
|
|
|
wayland.windowManager.hyprland.settings.env = [
|
|
|
|
"HYPRCURSOR_THEME,Bibata-Modern-Ice"
|
|
|
|
"HYPRCURSOR_SIZE,24"
|
|
|
|
"XCURSOR_THEME,Bibata-Modern-Ice"
|
|
|
|
"XCURSOR_SIZE,24"
|
|
|
|
];
|
|
|
|
}
|