marleyos/home/programs/cava.nix

18 lines
295 B
Nix
Raw Normal View History

{ ... }:
{
2024-10-20 21:23:03 -07:00
programs.cava = {
enable = true;
rose-pine.enable = true;
2024-11-02 16:49:48 -07:00
# TODO: disable this when mpd is not enabled? Can that be detected on non
2024-10-20 21:23:03 -07:00
# NixOS systems?
settings = {
input = {
method = "fifo";
source = "/tmp/mpd.fifo";
};
};
};
}