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
+317 -316
View File
File diff suppressed because it is too large Load Diff
+5 -4
View File
@@ -1283,16 +1283,17 @@ let
scriptsPath = flakeRoot + "/generated/.config/scripts"; scriptsPath = flakeRoot + "/generated/.config/scripts";
in in
{ {
home-manager.users.${username} = { #################################
# Home Manager integration
#################################
home-manager.users.${username} = {
home.file.".config/scripts" = { home.file.".config/scripts" = {
source = scriptsPath; source = scriptsPath;
recursive = true; recursive = true;
}; };
# Make scripts executable properly home.activation.makeScriptsExecutable = ''
home.activation.makeScriptsExecutable =
lib.hm.dag.entryAfter ["writeBoundary"] ''
chmod -R +x $HOME/.config/scripts chmod -R +x $HOME/.config/scripts
''; '';
}; };
@@ -5,16 +5,17 @@ let
scriptsPath = flakeRoot + "/generated/.config/scripts"; scriptsPath = flakeRoot + "/generated/.config/scripts";
in in
{ {
home-manager.users.${username} = { #################################
# Home Manager integration
#################################
home-manager.users.${username} = {
home.file.".config/scripts" = { home.file.".config/scripts" = {
source = scriptsPath; source = scriptsPath;
recursive = true; recursive = true;
}; };
# Make scripts executable properly home.activation.makeScriptsExecutable = ''
home.activation.makeScriptsExecutable =
lib.hm.dag.entryAfter ["writeBoundary"] ''
chmod -R +x $HOME/.config/scripts chmod -R +x $HOME/.config/scripts
''; '';
}; };