Files
nix-config/modules/nixos/hardware/openrgb/default.nix
mjallen18 70002a19e2 hmm
2026-04-07 18:39:42 -05:00

20 lines
333 B
Nix
Executable File

{
config,
lib,
namespace,
...
}:
let
hasDestopEnvironment =
config.${namespace}.desktop.cosmic.enable
|| config.${namespace}.desktop.gnome.enable
|| config.${namespace}.desktop.hyprland.enable;
in
{
config = lib.mkIf hasDestopEnvironment {
services.hardware.openrgb = {
enable = true;
};
};
}