puter/common/user/features/cava.nix

15 lines
194 B
Nix
Raw Normal View History

2023-09-17 11:31:20 +00:00
{pkgs, ...}: {
home.packages = with pkgs; [
cava
];
xdg.configFile."cava/config".text = ''
[input]
method = pulse
source = auto
[output]
method = ncurses
'';
}