15 lines
194 B
Nix
15 lines
194 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
cava
|
|
];
|
|
|
|
xdg.configFile."cava/config".text = ''
|
|
[input]
|
|
method = pulse
|
|
source = auto
|
|
|
|
[output]
|
|
method = ncurses
|
|
'';
|
|
}
|