This commit is contained in:
DarkGui
2025-11-18 20:35:43 -03:00
parent 149286ca06
commit 1ba54c86fa
5 changed files with 43 additions and 24 deletions
+16
View File
@@ -0,0 +1,16 @@
{ config, lib, inputs, pkgs, ... }: {
# OpenRGB setup
services.hardware.openrgb = {
enable = true;
motherboard = "amd";
package = pkgs.openrgb-with-all-plugins; # enable all plugins
};
services = {
udev.enable = true;
udev.extraRules = ''
KERNEL=="hidraw*", ATTRS{idVendor}=="1d57", ATTRS{idProduct}=="fa60", MODE="0666", SYMLINK+="xenta-mouse-hidraw"
KERNEL=="hidraw*", ATTRS{idVendor}=="1d57", ATTRS{idProduct}=="fa55", MODE="0666", SYMLINK+="xenta-mouse-hidraw"
'';
};
}