Regenerated

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