AquaticOS/modules/programs/hyprland/config/input.nix

23 lines
No EOL
439 B
Nix

{ ... }:
{
flake.modules.homeManager.hyprland =
{
wayland.windowManager.hyprland = {
settings = {
config = {
input = {
kb_layout = "us";
kb_variant = "";
kb_model = "";
kb_options = "";
kb_rules = "";
follow_mouse = 1;
sensitivity = 0; # -1.0 - 1.0, 0 means no modification.
};
};
};
};
};
}