nixos-config/system/hardware/openrgb.nix

12 lines
194 B
Nix

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