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

33 lines
617 B
Nix
Raw Normal View History

2024-11-16 12:34:21 -08:00
{
lib,
config,
...
}:
let
inherit (lib) mkEnableOption mkIf;
inherit (lib.marleyos) enabled;
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
{
2024-11-16 23:53:46 -08:00
options.marleyos.programs.cava.enable = mkEnableOption "cava";
2024-11-16 12:34:21 -08:00
config = mkIf cfg.enable {
programs.cava = {
enable = true;
2024-11-16 12:34:21 -08:00
rose-pine = mkIf colors.isRosePine enabled;
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";
};
2024-11-16 12:34:21 -08:00
};
};
};
}