This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/cava/default.nix

22 lines
327 B
Nix
Raw Normal View History

2023-03-14 15:23:24 +00:00
{
2023-10-08 10:51:15 +01:00
pkgs,
lib,
...
}: {
home.packages = [pkgs.cava];
2023-03-14 15:23:24 +00:00
2023-10-08 10:51:15 +01:00
xdg.configFile."cava/config".text = lib.generators.toINI {} {
2023-03-14 15:23:24 +00:00
general = {
2023-05-20 18:42:57 +01:00
bars = "0";
bar_width = "2";
};
input = {
method = "fifo";
source = "/tmp/mpd.fifo";
sample_rate = "44100";
sample_bits = "16";
};
2023-03-14 15:23:24 +00:00
};
}