Files
nixos/apps/hyprland/hypr/input.nix
T
2026-01-30 20:10:32 -06:00

15 lines
304 B
Nix

{myConfig, ...}: {
wayland.windowManager.hyprland.settings = {
input = {
repeat_rate = 50;
repeat_delay = 300;
numlock_by_default = true;
kb_options = myConfig.hyprland.kb_options;
};
cursor = {
hide_on_key_press = false;
no_warps = false;
};
};
}