From 21ea725f48f37997aa3a10a189499f3d965e9ba6 Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Sat, 14 Mar 2026 21:42:25 +0100 Subject: [PATCH] Enhance firstboot setup with symlink and permissions Add firstboot setup service symlink and update permissions. --- Containerfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 755d104..92772cb 100644 --- a/Containerfile +++ b/Containerfile @@ -63,9 +63,14 @@ RUN --mount=type=bind,from=ctx,source=/,target=/ctx \ /ctx/build/10-build.sh COPY files/. / +COPY files/. / + RUN chmod +x /etc/skel/.config/firstboot/firstboot-setup.sh && \ - chmod +x /etc/skel/.config/firstboot/wait-and-run.sh && \ - chmod +x /usr/local/bin/install-homebrew.sh + chmod +x /usr/local/bin/install-homebrew.sh && \ + mkdir -p /etc/skel/.config/systemd/user/graphical-session.target.wants && \ + ln -s ../firstboot-setup.service \ + /etc/skel/.config/systemd/user/graphical-session.target.wants/firstboot-setup.service + ### LINTING