Regenerated

This commit is contained in:
2026-03-23 16:05:40 +00:00
parent 48d0bdfa07
commit ccc9b401e2
34 changed files with 88 additions and 2877 deletions
@@ -1,20 +0,0 @@
{ lib, config, pkgs, ... }:
let
username = config.defaultUser or "henrov";
assetPath = ../../../assets/system/conf/waybar;
in
{
# Install Waybar globally
environment.systemPackages = [ pkgs.waybar ];
# Contribute to the existing Home Manager users map safely
home-manager.users = lib.recursiveUpdate config.home-manager.users {
${username} = {
home.file = lib.recursiveUpdate (config.home-manager.users.${username}.home.file or {}) {
".config/waybar/config" = { source = "${assetPath}/config"; };
".config/waybar/style.css" = { source = "${assetPath}/style.css"; };
};
};
};
}