nix/home/tiling/waybar/default.nix
2025-11-23 13:13:32 -05:00

13 lines
176 B
Nix

{ config, pkgs, ... }:
{
programs.waybar = {
enable = true;
};
home.file.".config/waybar" = {
source = ./config;
recursive = true;
force = true;
};
}