nixos-config/modules/home/wms/hyprland/inputs/default.nix
2024-12-08 06:41:06 -05:00

16 lines
339 B
Nix

{ config, ... }:
{
wayland.windowManager.hyprland.settings = {
input = {
follow_mouse = 1;
accel_profile = "flat";
scroll_factor = 0.8;
touchpad.natural_scroll = false;
};
gestures.workspace_swipe = false;
device = {
name = "sinowealth-game-mouse";
sensitivity = "-0.9";
};
};
}