2024-09-02 18:16:22 -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;
|
2024-11-06 11:49:09 -08:00
|
|
|
scroll_factor = 0.15;
|
2024-08-07 08:17:21 -07:00
|
|
|
};
|
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"
|
|
|
|
];
|
|
|
|
}
|