Regenerated
This commit is contained in:
+302
-297
File diff suppressed because it is too large
Load Diff
+14
-9
@@ -2530,16 +2530,21 @@ in
|
|||||||
#################################
|
#################################
|
||||||
home-manager.users = {
|
home-manager.users = {
|
||||||
"${username}" = {
|
"${username}" = {
|
||||||
home.file = lib.mkMerge [
|
home.file = {
|
||||||
(lib.mapAttrs' (name: value: {
|
".config/stylix/stylix.conf" = {
|
||||||
name = ".config/${moduleName}/${name}";
|
text = builtins.readFile "${assetPath}/stylix.conf";
|
||||||
value = value;
|
force = true;
|
||||||
}) stylixFiles)
|
};
|
||||||
|
".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 = {
|
home.sessionVariables = {
|
||||||
STYLIX_CONF = "$HOME/.config/stylix/stylix.conf";
|
STYLIX_CONF = "$HOME/.config/stylix/stylix.conf";
|
||||||
|
|||||||
@@ -60,16 +60,21 @@ in
|
|||||||
#################################
|
#################################
|
||||||
home-manager.users = {
|
home-manager.users = {
|
||||||
"${username}" = {
|
"${username}" = {
|
||||||
home.file = lib.mkMerge [
|
home.file = {
|
||||||
(lib.mapAttrs' (name: value: {
|
".config/stylix/stylix.conf" = {
|
||||||
name = ".config/${moduleName}/${name}";
|
text = builtins.readFile "${assetPath}/stylix.conf";
|
||||||
value = value;
|
force = true;
|
||||||
}) stylixFiles)
|
};
|
||||||
|
".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 = {
|
home.sessionVariables = {
|
||||||
STYLIX_CONF = "$HOME/.config/stylix/stylix.conf";
|
STYLIX_CONF = "$HOME/.config/stylix/stylix.conf";
|
||||||
|
|||||||
Reference in New Issue
Block a user