This commit is contained in:
Sean Kovacs 2025-12-12 13:23:24 -05:00
commit 0680b63126
Signed by: sckova
GPG key ID: 00F325187C68651A
15 changed files with 360 additions and 142 deletions

View file

@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
programs.waybar = {
enable = true;
};
home.file.".config/waybar" = {
source = ./config;
recursive = true;
force = true;
};
}