Regenerated

This commit is contained in:
2026-03-25 18:01:41 +00:00
parent 2a8ce21d79
commit 32aaa9d9bd
2 changed files with 24 additions and 14 deletions
+11 -6
View File
@@ -1080,7 +1080,6 @@ let
in
{
#################################
# NixOS system user
#################################
@@ -1096,21 +1095,27 @@ in
#################################
_module.args.hmUsers = {
${username} = {
# Minimal required
home.username = username;
home.homeDirectory = "/home/${username}";
home.stateVersion = "26.05";
# Add user-specific packages here
home.packages = [
# add packages here
];
# Add user dotfiles, session variables, etc. here if needed
home.file = {
# Example:
# ".bashrc" = { source = /path/to/bashrc; };
# Ensure stylix directory exists with correct permissions
".config/stylix/.keep" = {
source = null; # just create the directory
mode = "0755"; # rwx for owner, rx for group/others
};
};
# Activation to ensure the directory is writable before symlinks
home.activation.fixStylixPermissions = lib.hm.dag.entryAfter ["writeBoundary"] ''
chmod u+rwx $HOME/.config
'';
};
};
}
#+END_SRC
+11 -6
View File
@@ -5,7 +5,6 @@ let
in
{
#################################
# NixOS system user
#################################
@@ -21,20 +20,26 @@ in
#################################
_module.args.hmUsers = {
${username} = {
# Minimal required
home.username = username;
home.homeDirectory = "/home/${username}";
home.stateVersion = "26.05";
# Add user-specific packages here
home.packages = [
# add packages here
];
# Add user dotfiles, session variables, etc. here if needed
home.file = {
# Example:
# ".bashrc" = { source = /path/to/bashrc; };
# Ensure stylix directory exists with correct permissions
".config/stylix/.keep" = {
source = null; # just create the directory
mode = "0755"; # rwx for owner, rx for group/others
};
};
# Activation to ensure the directory is writable before symlinks
home.activation.fixStylixPermissions = lib.hm.dag.entryAfter ["writeBoundary"] ''
chmod u+rwx $HOME/.config
'';
};
};
}