punkfairie
9408679e81
Switch to nixfmt as when I was adding treesitter injected lang hints, Alejandra was not formatting those comments in a way I liked. Turns out I like the nixfmt style in general better.
17 lines
294 B
Nix
17 lines
294 B
Nix
{ ... }:
|
|
{
|
|
programs.cava = {
|
|
enable = true;
|
|
|
|
rose-pine.enable = true;
|
|
|
|
# TODO disable this when mpd is not enabled? Can that be detected on non
|
|
# NixOS systems?
|
|
settings = {
|
|
input = {
|
|
method = "fifo";
|
|
source = "/tmp/mpd.fifo";
|
|
};
|
|
};
|
|
};
|
|
}
|