nix-dotfiles/home-manager/modules/polybar.nix
2025-03-29 04:53:04 -06:00

16 lines
267 B
Nix

{
pkgs,
...
}: {
home.packages = with pkgs; [
(polybar.override {
alsaSupport = false;
curlSupport = true;
i3Support = true;
mpdSupport = true;
pulseSupport = true;
nlSupport = true;
iwSupport = true;
})
];
}