nix-dotfiles/home-manager/modules/polybar.nix
2025-07-01 22:07:45 -06:00

13 lines
188 B
Nix

{
i3dotfiles,
pkgs,
...
}: {
home.packages = pkgs.polybar.all;
xdg.configFile."polybar" = {
source = "${i3dotfiles}/polybar";
recursive = true;
force = true;
};
}