nixos-config/system/hardware/openrgb.nix

12 lines
186 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
environment.systemPackages = [ pkgs.openrgb-with-all-plugins ];
# OpenRGB setup
services.hardware.openrgb = {
enable = true;
motherboard = "amd";
};
}