1 2 3 4 5 6 7 8 9
#!/bin/sh set -eu ENV_CMD='guix time-machine --fallback -C aux/containers/guix/pinned-channels.scm -- environment --fallback -m aux/containers/guix/manifest.scm' if [ -z "${1:-}" ]; then $ENV_CMD else $ENV_CMD --pure -C -- sh -c "$@" fi