mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-25 02:03:51 -08:00
17 lines
517 B
Nix
17 lines
517 B
Nix
{lib, ...}: {
|
|
imports = [../common.nix];
|
|
wayland.windowManager.hyprland.settings.input.touchpad = {
|
|
natural_scroll = true;
|
|
disable_while_typing = true;
|
|
clickfinger_behavior = true;
|
|
tap-to-click = false;
|
|
scroll_factor = 0.5;
|
|
};
|
|
wayland.windowManager.hyprland.settings.general.sensitivity = lib.mkForce 1.0;
|
|
wayland.windowManager.hyprland.settings.env = [
|
|
"HYPRCURSOR_THEME,Bibata-Modern-Ice"
|
|
"HYPRCURSOR_SIZE,24"
|
|
"XCURSOR_THEME,Bibata-Modern-Ice"
|
|
"XCURSOR_SIZE,24"
|
|
];
|
|
}
|