16 lines
334 B
Nix
16 lines
334 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
cfg = config.sisyphus.services.openrgb;
|
||
|
in {
|
||
|
options.sisyphus.services.openrgb.enable = lib.mkEnableOption "OpenRGB";
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
services.hardware.openrgb = {
|
||
|
enable = true;
|
||
|
package = pkgs.openrgb-with-all-plugins;
|
||
|
motherboard = "intel";
|
||
|
};
|
||
|
};
|
||
|
}
|