]> git.immae.eu Git - perso/Immae/Config/Nix.git/blobdiff - nixops/scripts/setup
Upgrade pgloader and remove noChroot need
[perso/Immae/Config/Nix.git] / nixops / scripts / setup
index dce8332f7284308b39e01ed65732f3d8ecf38b72..793b7c3f1553b763dad322b6fa0fa2a71e51c888 100755 (executable)
@@ -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 )"