NixOS-Config/modules/home/wms/hyprland/inputs/default.nix

17 lines
339 B
Nix
Raw Normal View History

2024-12-08 06:41:06 -05:00
{ 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";
};
};
}