devbox-devcontainer/.devcontainer/scripts/start.sh
2024-10-20 18:03:13 +02:00

13 lines
305 B
Bash

#!/bin/sh
# Checks if /nix/store is empty
if [ -z "$(ls -A /nix/store)" ]; then
echo "Nix store volume is empty. Copying pre-filled store from image."
cp -a /nix-store-backup/. /nix/store/
else
echo "Nix store volume is not empty. Skipping copy."
fi
# Start the normal container process
exec "$@"