Refactor udev rules
This commit is contained in:
parent
a91a056c28
commit
e2deffa0ba
|
@ -58,12 +58,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
# Enable necessary udev rules.
|
|
||||||
udev.packages = with pkgs; [
|
|
||||||
openrgb
|
|
||||||
qmk-udev-rules
|
|
||||||
];
|
|
||||||
|
|
||||||
libinput = {
|
libinput = {
|
||||||
enable = true;
|
enable = true;
|
||||||
mouse = { accelProfile = "flat"; };
|
mouse = { accelProfile = "flat"; };
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
./amdgpu-clocks.nix
|
./amdgpu-clocks.nix
|
||||||
./flatpak.nix
|
./flatpak.nix
|
||||||
./ollama.nix
|
./ollama.nix
|
||||||
|
./udev.nix
|
||||||
./xserver.nix
|
./xserver.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
9
nixos/fuchsia/services/udev.nix
Normal file
9
nixos/fuchsia/services/udev.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# Enable necessary udev rules.
|
||||||
|
services.udev.packages = with pkgs; [
|
||||||
|
openrgb
|
||||||
|
qmk-udev-rules
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue