marleyos/modules/home/programs/cava/default.nix
2024-11-16 23:57:21 -08:00

32 lines
617 B
Nix

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