NixFiles/systems/nixos/openrgb.nix

9 lines
129 B
Nix
Raw Normal View History

2023-12-19 19:08:55 +00:00
{ config, pkgs, ... }:
{
services.hardware.openrgb = {
enable = true;
package = pkgs.openrgb-with-all-plugins;
};
}