nix-config/home/hyprland/waybar/default.nix

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;
};
}