nixos-config/modules/home/cava/default.nix

11 lines
249 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
'' + builtins.readFile "${inputs.catppuccin-cava}/mocha.cava";
2023-11-06 16:44:04 +01:00
}