feat: adds openrgb service

This commit is contained in:
Ahwx 2024-12-20 00:23:23 +01:00
parent 3a7e0e9657
commit 2faaa98f66

12
modules/core/openrgb.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
services.hardware.openrgb = {
enable = true;
package = pkgs.openrgb-with-all-plugins;
motherboard = "amd";
server = {
port = 6742;
# autoStart = true;
};
};
}