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
@@ -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
'';
};
}