1# shellcheck shell=bash 2# This setup hook set the HOME environment variable to a writable directory. 3 4export HOME
5 6writableTmpDirAsHome (){ 7if[ ! -w "$HOME"];then 8HOME="$NIX_BUILD_TOP/.home" 9 mkdir -p "$HOME"10export HOME
11fi12}1314postHooks+=(writableTmpDirAsHome)