marleyos/modules/home/programs/cava/default.nix

32 lines
562 B
Nix
Raw Normal View History

2024-11-16 12:34:21 -08:00
{
lib,
config,
...
}:
let
inherit (lib) mkIf enabled;
inherit (lib.marleyos) mkEnableModule;
2024-11-16 12:34:21 -08:00
cfg = config.marleyos.programs.cava;
inherit (config.marleyos.theme) colors;
2024-11-16 12:34:21 -08:00
in
{
options = mkEnableModule "programs.cava";
config = mkIf cfg.enable {
enable = true;
# "${colors.base}" = enabled;
rose-pine.enable = true;
2024-11-16 12:34:21 -08:00
# TODO: disable this when mpd is not enabled? Can that be detected on non
# NixOS systems?
settings = {
input = {
method = "fifo";
source = "/tmp/mpd.fifo";
};
};
};
}