20 lines
416 B
Nix
20 lines
416 B
Nix
# ABOUTME: Hyprland input and gesture configuration
|
|
# ABOUTME: Keyboard layout, mouse settings, and touchpad behavior
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
{
|
|
wayland.windowManager.hyprland.settings = {
|
|
input = lib.mkDefault {
|
|
kb_layout = "us";
|
|
kb_options = "caps:super,compose:ralt";
|
|
|
|
follow_mouse = 1;
|
|
sensitivity = 0;
|
|
|
|
touchpad = {
|
|
natural_scroll = false;
|
|
};
|
|
};
|
|
};
|
|
}
|