nix-config/home/waybar/default.nix
2025-03-25 15:23:08 +01:00

17 lines
264 B
Nix

{
pkgs,
config,
...
}: {
programs.waybar = {
enable = true;
package = pkgs.waybar;
};
home.file.".config/waybar" = {
source = ./configs;
# copy the scripts directory recursively
recursive = true;
};
}