Regenerated
This commit is contained in:
+296
-290
File diff suppressed because it is too large
Load Diff
+12
-6
@@ -3367,7 +3367,6 @@ let
|
||||
username = "henrov";
|
||||
in
|
||||
{
|
||||
|
||||
#################################
|
||||
# NixOS system user
|
||||
#################################
|
||||
@@ -3391,18 +3390,25 @@ in
|
||||
# add packages here
|
||||
];
|
||||
|
||||
home.file = {
|
||||
|
||||
# Activation to ensure the directory is writable before symlinks
|
||||
home.activation.fixStylixPermissions = lib.hm.dag.entryAfter ["writeBoundary"] ''
|
||||
# Ensure .config directory is writable
|
||||
home.activation = {
|
||||
fixStylixPermissions = {
|
||||
text = ''
|
||||
mkdir -p $HOME/.config
|
||||
chmod -R u+rwx $HOME/.config
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
# Locale and timezone settings for the user
|
||||
home.sessionVariables = {
|
||||
LANG = "nl_NL.UTF-8";
|
||||
LC_ALL = "nl_NL.UTF-8";
|
||||
TZ = "Europe/Amsterdam";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
#+END_SRC
|
||||
|
||||
|
||||
|
||||
@@ -4,7 +4,6 @@ let
|
||||
username = "henrov";
|
||||
in
|
||||
{
|
||||
|
||||
#################################
|
||||
# NixOS system user
|
||||
#################################
|
||||
@@ -28,14 +27,22 @@ in
|
||||
# add packages here
|
||||
];
|
||||
|
||||
home.file = {
|
||||
|
||||
# Activation to ensure the directory is writable before symlinks
|
||||
home.activation.fixStylixPermissions = lib.hm.dag.entryAfter ["writeBoundary"] ''
|
||||
# Ensure .config directory is writable
|
||||
home.activation = {
|
||||
fixStylixPermissions = {
|
||||
text = ''
|
||||
mkdir -p $HOME/.config
|
||||
chmod -R u+rwx $HOME/.config
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
# Locale and timezone settings for the user
|
||||
home.sessionVariables = {
|
||||
LANG = "nl_NL.UTF-8";
|
||||
LC_ALL = "nl_NL.UTF-8";
|
||||
TZ = "Europe/Amsterdam";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user