Regenerated

This commit is contained in:
2026-03-25 12:27:50 +00:00
parent d3d61d7157
commit 44e2cfea2b
4 changed files with 142 additions and 16 deletions
+3 -3
View File
@@ -18,15 +18,15 @@ in
# Always use /bin/sh -c for multi-line commands
serviceConfig.ExecStart = ''
/bin/sh -c '
echo "Copying assets from ${assetPath} to ${homeDir} ..."
echo "Copying assets from ${assetPath} to ${homeDir}/Droidnix ..."
if [ ! -d "${assetPath}" ]; then
echo "ERROR: ${assetPath} does not exist"
exit 1
fi
mkdir -p "${homeDir}"
chown ${username}:${username} "${homeDir}"
mkdir -p "${homeDir}/Droidnix"
chown u+rwx ${username}:${username} "${homeDir}/Droidnix"
${pkgs.rsync}/bin/rsync -a --no-owner --no-group "${assetPath}/" "${homeDir}/"