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

20 lines
325 B
Nix

{ pkgs, lib, ... }:
{
home.packages = [ pkgs.cava ];
xdg.configFile."cava/config".text = lib.generators.toINI { } {
general = {
bars = "0";
bar_width = "2";
};
input = {
method = "fifo";
source = "/tmp/mpd.fifo";
sample_rate = "44100";
sample_bits = "16";
};
};
}