Regenerated

This commit is contained in:
2026-03-31 17:44:48 +00:00
parent fe5d872ed5
commit d5a2b2a319
3 changed files with 311 additions and 323 deletions
+293 -297
View File
File diff suppressed because it is too large Load Diff
+9 -13
View File
@@ -3390,21 +3390,17 @@ in
# add packages here # add packages here
]; ];
# Ensure .config directory is writable # Activation to ensure the directory is writable
home.activation = { home.activation.fixStylixPermissions = ''
fixStylixPermissions = { mkdir -p $HOME/.config
text = '' chmod -R u+rwx $HOME/.config
mkdir -p $HOME/.config '';
chmod -R u+rwx $HOME/.config
'';
};
};
# Locale and timezone settings for the user # Locale and timezone settings
home.sessionVariables = { home.sessionVariables = {
LANG = "nl_NL.UTF-8"; LANG = "nl_NL.UTF-8";
LC_ALL = "nl_NL.UTF-8"; LC_ALL = "nl_NL.UTF-8";
TZ = "Europe/Amsterdam"; TZ = "Europe/Amsterdam";
}; };
}; };
}; };
+9 -13
View File
@@ -27,21 +27,17 @@ in
# add packages here # add packages here
]; ];
# Ensure .config directory is writable # Activation to ensure the directory is writable
home.activation = { home.activation.fixStylixPermissions = ''
fixStylixPermissions = { mkdir -p $HOME/.config
text = '' chmod -R u+rwx $HOME/.config
mkdir -p $HOME/.config '';
chmod -R u+rwx $HOME/.config
'';
};
};
# Locale and timezone settings for the user # Locale and timezone settings
home.sessionVariables = { home.sessionVariables = {
LANG = "nl_NL.UTF-8"; LANG = "nl_NL.UTF-8";
LC_ALL = "nl_NL.UTF-8"; LC_ALL = "nl_NL.UTF-8";
TZ = "Europe/Amsterdam"; TZ = "Europe/Amsterdam";
}; };
}; };
}; };