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

10 lines
176 B
Nix
Raw Permalink Normal View History

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