14 lines
190 B
Nix
14 lines
190 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
options = {
|
|
openrgb.enable = lib.mkEnableOption "";
|
|
};
|
|
|
|
config = lib.mkIf config.openrgb.enable {
|
|
services.hardware.openrgb.enable = true;
|
|
};
|
|
}
|