Refactor libinput service
This commit is contained in:
parent
e2deffa0ba
commit
ed06f7e925
|
@ -58,13 +58,7 @@
|
|||
};
|
||||
|
||||
services = {
|
||||
libinput = {
|
||||
enable = true;
|
||||
mouse = { accelProfile = "flat"; };
|
||||
};
|
||||
|
||||
# Enable a few other services.
|
||||
ratbagd.enable = true;
|
||||
pcscd.enable = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
imports = [
|
||||
./amdgpu-clocks.nix
|
||||
./flatpak.nix
|
||||
./libinput.nix
|
||||
./ollama.nix
|
||||
./udev.nix
|
||||
./xserver.nix
|
||||
|
|
11
nixos/fuchsia/services/libinput.nix
Normal file
11
nixos/fuchsia/services/libinput.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
services.libinput = {
|
||||
enable = true;
|
||||
mouse = { accelProfile = "flat"; };
|
||||
};
|
||||
|
||||
# DBus daemon to configure input devices.
|
||||
services.ratbagd.enable = true;
|
||||
}
|
Loading…
Reference in a new issue