X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=nixops%2Fscripts%2Fsetup;h=793b7c3f1553b763dad322b6fa0fa2a71e51c888;hb=e83ec9612cf3dd7ecb4348c5b186cd0626a6d801;hp=dce8332f7284308b39e01ed65732f3d8ecf38b72;hpb=06467acff2ebb98422493001d79d6953e224f677;p=perso%2FImmae%2FConfig%2FNix.git diff --git a/nixops/scripts/setup b/nixops/scripts/setup index dce8332..793b7c3 100755 --- a/nixops/scripts/setup +++ b/nixops/scripts/setup @@ -82,15 +82,19 @@ done if nix show-config --json | jq -e '.sandbox.value == "true"' >/dev/null; then cat <<-EOF - There are some impure derivations in the repo currently (grep __noChroot), please put + There used to be some impure derivations (grep __noChroot), you may need sandbox = "relaxed" in /etc/nix/nix.conf you may also want to add keep-outputs = true keep-derivations = true to prevent garbage collector from deleting build dependencies (they take a lot of time to build) + and + allow-import-from-derivation = false + as an attempt to avoid having build-time derivations (doesn’t work for all packages) + press key to continue EOF - exit 1 + read y fi DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"