16 lines
287 B
Nix
16 lines
287 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
openrgb-with-all-plugins
|
|
];
|
|
# OpenRGB
|
|
services.hardware.openrgb = {
|
|
enable = true;
|
|
package = pkgs.openrgb-with-all-plugins;
|
|
motherboard = "amd";
|
|
server = {
|
|
port = 6742;
|
|
};
|
|
};
|
|
} |