14 lines
313 B
Nix
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;
|
|
};
|
|
};
|
|
} |