11.stylix/modules/cava/testbeds/cava.nix
awwpotato 5259682ce5
cava: add testbed (#1617)
Link: https://github.com/nix-community/stylix/pull/1617

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-07-06 22:28:43 +00:00

14 lines
283 B
Nix

{ lib, pkgs, ... }:
{
stylix.testbed.ui.command = {
text = ''
${lib.getExe' pkgs.alsa-utils "aplay"} /dev/urandom &
${lib.getExe pkgs.cava}
'';
useTerminal = true;
};
home-manager.sharedModules = lib.singleton {
programs.cava.enable = true;
};
}