Refactor udev rules

This commit is contained in:
♥ Minnie ♥ 2024-07-26 09:03:58 +08:00
parent a91a056c28
commit e2deffa0ba
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
3 changed files with 10 additions and 6 deletions

View file

@ -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"; };

View file

@ -5,6 +5,7 @@
./amdgpu-clocks.nix ./amdgpu-clocks.nix
./flatpak.nix ./flatpak.nix
./ollama.nix ./ollama.nix
./udev.nix
./xserver.nix ./xserver.nix
]; ];
} }

View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
# Enable necessary udev rules.
services.udev.packages = with pkgs; [
openrgb
qmk-udev-rules
];
}