nixos-config/modules/home/cava.nix

12 lines
250 B
Nix
Raw Normal View History

2023-11-06 16:44:04 +01:00
{ inputs, pkgs, ... }:
{
programs.cava = {
2023-11-06 16:46:12 +01:00
enable = true;
2023-11-06 16:44:04 +01:00
};
2023-11-06 16:46:12 +01:00
# https://github.com/catppuccin/cava
home.file.".config/cava/config".text = ''
# custom cava config
2024-04-23 20:50:21 +02:00
'' + builtins.readFile "${inputs.catppuccin-cava}/mocha.cava";
2024-04-23 20:15:16 +02:00
}