Regenerated

This commit is contained in:
2026-04-10 19:06:05 +02:00
parent 17798485f0
commit ee6930a5da
3 changed files with 333 additions and 330 deletions
+319 -318
View File
File diff suppressed because it is too large Load Diff
+7 -6
View File
@@ -1283,18 +1283,19 @@ let
scriptsPath = flakeRoot + "/generated/.config/scripts";
in
{
home-manager.users.${username} = {
#################################
# Home Manager integration
#################################
home-manager.users.${username} = {
home.file.".config/scripts" = {
source = scriptsPath;
recursive = true;
};
# Make scripts executable properly
home.activation.makeScriptsExecutable =
lib.hm.dag.entryAfter ["writeBoundary"] ''
chmod -R +x $HOME/.config/scripts
'';
home.activation.makeScriptsExecutable = ''
chmod -R +x $HOME/.config/scripts
'';
};
}
#+END_SRC
@@ -5,17 +5,18 @@ let
scriptsPath = flakeRoot + "/generated/.config/scripts";
in
{
home-manager.users.${username} = {
#################################
# Home Manager integration
#################################
home-manager.users.${username} = {
home.file.".config/scripts" = {
source = scriptsPath;
recursive = true;
};
# Make scripts executable properly
home.activation.makeScriptsExecutable =
lib.hm.dag.entryAfter ["writeBoundary"] ''
chmod -R +x $HOME/.config/scripts
'';
home.activation.makeScriptsExecutable = ''
chmod -R +x $HOME/.config/scripts
'';
};
}