infrastructure

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit a8edb5b2b19d29cdb7eb929412661ebed50cef95
parent 5bd11077589347501d98cf84bcdeb3b116a6e887
Author: Silas Brack <silasbrack@gmail.com>
Date:   Fri, 12 Jun 2026 23:09:17 +0200

fix: create bind mount target dir for DynamicUser

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

Diffstat:
Mmodules/simple-web-app.nix | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/modules/simple-web-app.nix b/modules/simple-web-app.nix @@ -61,6 +61,7 @@ in ExecStartPre = let setupScript = pkgs.writeShellScript "simple-web-app-setup" '' mkdir -p /mnt/volume-hel1-1/simple-web-app/data + mkdir -p /var/lib/private/simple-web-app/data ''; in "+${setupScript}"; BindPaths = [ "/mnt/volume-hel1-1/simple-web-app/data:/var/lib/simple-web-app/data" ];