compromise for no suspend

This commit is contained in:
Reid 2026-04-04 00:27:55 -07:00
parent 37c6c3371e
commit 4f2f4c9b52
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
3 changed files with 28 additions and 15 deletions

14
modules/hardware/rgb.nix Normal file
View file

@ -0,0 +1,14 @@
{ pkgs, config, lib, ... }:
with lib;
let
cfg = config.modules.hardware.rgb;
in {
options.modules.hardware.rgb = {
enable = mkEnableOption "Enable support for rgb devices through openrgb";
};
config = mkIf cfg.enable {
services.hardware.openrgb.enable = true;
};
}