Files
nix-config/modules/nixos/hardware/openrgb/default.nix
mjallen18 e15d62d03a oops
2026-01-07 09:57:56 -06:00

14 lines
324 B
Nix

{ 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;
};
};
}