Regenerated

This commit is contained in:
2026-03-31 11:40:50 +00:00
parent 7434bab5fa
commit 846092d3fa
3 changed files with 330 additions and 315 deletions
@@ -60,16 +60,21 @@ in
#################################
home-manager.users = {
"${username}" = {
home.file = lib.mkMerge [
(lib.mapAttrs' (name: value: {
name = ".config/${moduleName}/${name}";
value = value;
}) stylixFiles)
home.file = {
".config/stylix/stylix.conf" = {
text = builtins.readFile "${assetPath}/stylix.conf";
force = true;
};
".config/stylix/palette.html" = {
text = builtins.readFile "${assetPath}/palette.html";
force = true;
};
".config/stylix/palette.json" = {
text = builtins.readFile "${assetPath}/palette.json";
force = true;
};
};
{
".config/${moduleName}/stylix.conf".text = stylixConf;
}
];
home.sessionVariables = {
STYLIX_CONF = "$HOME/.config/stylix/stylix.conf";