Refactor libinput service
This commit is contained in:
parent
e2deffa0ba
commit
ed06f7e925
|
@ -58,13 +58,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
libinput = {
|
|
||||||
enable = true;
|
|
||||||
mouse = { accelProfile = "flat"; };
|
|
||||||
};
|
|
||||||
|
|
||||||
# Enable a few other services.
|
# Enable a few other services.
|
||||||
ratbagd.enable = true;
|
|
||||||
pcscd.enable = true;
|
pcscd.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./amdgpu-clocks.nix
|
./amdgpu-clocks.nix
|
||||||
./flatpak.nix
|
./flatpak.nix
|
||||||
|
./libinput.nix
|
||||||
./ollama.nix
|
./ollama.nix
|
||||||
./udev.nix
|
./udev.nix
|
||||||
./xserver.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