11.stylix/modules/cava/testbeds/cava.nix

12 lines
277 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; };
}