Update NixDesk
This commit is contained in:
parent
adbb497f80
commit
05850a53ae
12 changed files with 182 additions and 103 deletions
15
nixos/modules/services/openrgb/default.nix
Normal file
15
nixos/modules/services/openrgb/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ 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";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue