Regenerated

This commit is contained in:
2026-04-11 20:06:28 +02:00
parent 9cf8249f16
commit e51fa2c770
3 changed files with 363 additions and 334 deletions
@@ -0,0 +1,21 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ config, pkgs, flakeRoot, ... }:
let
username = "henrov"; # Replace with your username if needed
in
{
home-manager.users = {
${username} = {
home.file = {
".config/shared/colors.css" = {
text = builtins.readFile "${flakeRoot}/generated/.config/shared/colors.css";
force = true;
};
".config/quickshell/powermenu/colors.css" = {
text = builtins.readFile "${flakeRoot}/generated/.config/shared/colors.css";
force = true;
};
};
};
};
}