Regenerated

This commit is contained in:
2026-03-22 19:14:32 +00:00
parent 3ea9583ff3
commit 46c8ccb524
33 changed files with 3 additions and 1456 deletions
@@ -1,25 +0,0 @@
{ lib, config, pkgs, ... }:
let
user = config.defaultUser or "henrov";
assetPath = ../../../assets/system/conf/waybar;
# Only include files that actually exist
files = builtins.filter (f: builtins.pathExists f) [
"${assetPath}/waybar.conf"
"${assetPath}/style.css"
];
# Generate Home Manager file attributes
homeFiles = lib.genAttrs (builtins.map builtins.baseNameOf files) (name: {
source = "${assetPath}/${name}";
target = ".config/waybar/${name}";
});
in
{
# Install Waybar system-wide
environment.systemPackages = [ pkgs.waybar ];
# Deploy config files via Home Manager
home-manager.users.${user}.home.file = homeFiles;
}