Files
nixconf/modules/sys/rgb.nix
T
2026-06-01 18:15:26 -06:00

13 lines
209 B
Nix

{ pkgs, lib, ... }:
{
# OpenRGB
services.hardware.openrgb = {
enable = true;
package = pkgs.openrgb-with-all-plugins;
motherboard = "amd";
server = {
port = 6742;
};
};
}