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
@@ -5,18 +5,16 @@ let
scriptsPath = flakeRoot + "/generated/.config/scripts";
in
{
#################################
# Home Manager integration
#################################
home-manager.users.${username} = {
home.file.".config/scripts" = {
source = scriptsPath;
recursive = true;
};
home.activation.makeScriptsExecutable = ''
chmod -R +x $HOME/.config/scripts
'';
home.file.".config/scripts/update.sh" = {
source = scriptsPath + "/update.sh";
executable = true;
};
};
}