Regenerated

This commit is contained in:
2026-04-10 19:11:22 +02:00
parent 838a82677a
commit f53de74eeb
3 changed files with 327 additions and 333 deletions
+317 -319
View File
File diff suppressed because it is too large Load Diff
+5 -7
View File
@@ -1283,19 +1283,17 @@ let
scriptsPath = flakeRoot + "/generated/.config/scripts"; scriptsPath = flakeRoot + "/generated/.config/scripts";
in in
{ {
#################################
# Home Manager integration
#################################
home-manager.users.${username} = { home-manager.users.${username} = {
home.file.".config/scripts" = { home.file.".config/scripts" = {
source = scriptsPath; source = scriptsPath;
recursive = true; recursive = true;
}; };
home.activation.makeScriptsExecutable = '' home.file.".config/scripts/update.sh" = {
chmod -R +x $HOME/.config/scripts source = scriptsPath + "/update.sh";
''; executable = true;
};
}; };
} }
#+END_SRC #+END_SRC
@@ -5,18 +5,16 @@ let
scriptsPath = flakeRoot + "/generated/.config/scripts"; scriptsPath = flakeRoot + "/generated/.config/scripts";
in in
{ {
#################################
# Home Manager integration
#################################
home-manager.users.${username} = { home-manager.users.${username} = {
home.file.".config/scripts" = { home.file.".config/scripts" = {
source = scriptsPath; source = scriptsPath;
recursive = true; recursive = true;
}; };
home.activation.makeScriptsExecutable = '' home.file.".config/scripts/update.sh" = {
chmod -R +x $HOME/.config/scripts source = scriptsPath + "/update.sh";
''; executable = true;
};
}; };
} }