Regenerated

This commit is contained in:
2026-04-10 19:23:12 +02:00
parent 44113eb7fe
commit 750494569e
3 changed files with 339 additions and 336 deletions
+321 -320
View File
File diff suppressed because it is too large Load Diff
+9 -8
View File
@@ -1283,15 +1283,16 @@ let
scriptsPath = flakeRoot + "/generated/.config/scripts";
in
{
home-manager.users.${username} = {
home.file.".config/scripts" = {
source = scriptsPath;
home-manager.users = {
${username} = {
home.file = {
".config/scripts/update.sh" = {
text = builtins.readFile (flakeRoot + "/generated/.config/scripts/update.sh");
executable = true;
force = true;
};
};
};
home.activation.makeScriptsExecutable = ''
chmod -R +x $HOME/.config/scripts
'';
};
}
#+END_SRC
@@ -5,14 +5,15 @@ let
scriptsPath = flakeRoot + "/generated/.config/scripts";
in
{
home-manager.users.${username} = {
home.file.".config/scripts" = {
source = scriptsPath;
home-manager.users = {
${username} = {
home.file = {
".config/scripts/update.sh" = {
text = builtins.readFile (flakeRoot + "/generated/.config/scripts/update.sh");
executable = true;
force = true;
};
};
};
home.activation.makeScriptsExecutable = ''
chmod -R +x $HOME/.config/scripts
'';
};
}