Files
nix-config/modules/nixos/hardware/openrgb/default.nix
mjallen18 3268c28cc8 openrgb
2026-01-07 09:46:13 -06:00

14 lines
313 B
Nix

{ config, lib, ... }:
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;
};
};
}