nix-config/hosts/common/optional/rgb.nix

13 lines
211 B
Nix
Raw Normal View History

2023-12-24 11:16:59 +01:00
{
config,
lib,
pkgs,
...
}: {
services.hardware.openrgb = {
enable = true;
package = pkgs.openrgb-with-all-plugins;
motherboard = lib.mkDefault config.variables.machine.motherboard;
};
}