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

12 lines
183 B
Nix
Raw Normal View History

2023-03-14 15:23:24 +00:00
{ pkgs, config, lib, ... }:
{
home.packages = [ pkgs.cava ];
xdg.configFile."cava/config".text = lib.generators.toINI { } {
general = {
bar_width = "3";
2023-03-14 15:23:24 +00:00
};
};
}