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

32 lines
658 B
Nix
Raw Normal View History

2024-11-16 20:34:21 +00:00
{
lib,
config,
...
}: let
cfg = config.marleyos.programs.cava;
in {
options.marleyos.programs.cava.enable = lib.mkEnableOption "cava";
2024-11-16 20:34:21 +00:00
config = lib.mkIf cfg.enable {
programs.cava = {
# FIX: Re-enable once https://github.com/NixOS/nixpkgs/pull/355948 is
# ported to nixpkgs/unstable
enable = false;
2024-11-16 20:34:21 +00: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 20:34:21 +00:00
};
};
2025-03-02 18:41:56 +00:00
stylix.targets.cava = {
enable = true;
rainbow.enable = true;
};
2024-11-16 20:34:21 +00:00
};
}