diff --git a/scripts/create-darwin-volume.sh b/scripts/create-darwin-volume.sh index f5b3dbe145c..61f67930524 100755 --- a/scripts/create-darwin-volume.sh +++ b/scripts/create-darwin-volume.sh @@ -62,7 +62,7 @@ generate_mount_command(){ if test_filevault_in_use; then printf " %s\n" /bin/sh -c '/usr/bin/security find-generic-password -l "Nix Volume" -a "Nix Volume" -s "Nix Volume" -w | /usr/sbin/diskutil apfs unlockVolume "Nix Volume" -mountpoint /nix -stdinpassphrase' else - printf " %s\n" /usr/sbin/diskutil mount nobrowse -mountPoint /nix "Nix Volume" + printf " %s\n" /usr/sbin/diskutil mount -mountPoint /nix "Nix Volume" fi }