diff --git a/modules/home/programs/cava/default.nix b/modules/home/programs/cava/default.nix index 975a189..82c7f1e 100644 --- a/modules/home/programs/cava/default.nix +++ b/modules/home/programs/cava/default.nix @@ -14,16 +14,18 @@ in options = mkEnableModule "programs.cava"; config = mkIf cfg.enable { - enable = true; + programs.cava = { + enable = true; - rose-pine = mkIf colors.isRosePine enabled; + 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"; + # TODO: disable this when mpd is not enabled? Can that be detected on non + # NixOS systems? + settings = { + input = { + method = "fifo"; + source = "/tmp/mpd.fifo"; + }; }; }; };