dotfiles.nix/nixos/fuchsia/services/libinput.nix

12 lines
181 B
Nix
Raw Normal View History

2024-07-26 09:08:32 +08:00
{ ... }:
{
services.libinput = {
enable = true;
mouse = { accelProfile = "flat"; };
};
# DBus daemon to configure input devices.
services.ratbagd.enable = true;
}