Bubblewrapped services

Artifact [f55ba5e3c1]
Login

Artifact f55ba5e3c118bc21afda344f3924044a324c63e1510012fb4de2fcb406d84172:


#!/bin/bash

# Add support for nix-shell if available
if [[ -e "shell.nix" && $(which nix-shell) ]]; then
  echo Loading Nix packages
  nix-shell --run "$HOME/services/_sandbox $*"
elif [[ -e "packages.nix" && $(which nix-shell) ]]; then
  echo Loading Nix packages
  nix-shell -p $(xargs -a packages.nix echo) --run "$HOME/services/_sandbox $*"
else
  $HOME/services/_sandbox $*
fi