mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 06:42:28 +00:00
20 lines
240 B
Bash
20 lines
240 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -eu -o pipefail
|
||
|
|
||
|
set -x
|
||
|
|
||
|
source common.sh
|
||
|
|
||
|
# Avoid store dir being inside sandbox build-dir
|
||
|
unset NIX_STORE_DIR
|
||
|
unset NIX_STATE_DIR
|
||
|
|
||
|
storeDirs
|
||
|
|
||
|
initLowerStore
|
||
|
|
||
|
mountOverlayfs
|
||
|
|
||
|
nix-store --store "$storeB" --optimise
|