File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,6 @@ Options:
15
15
do not reboot after installation, allowing further customization of the target installation.
16
16
* --kexec url
17
17
use another kexec tarball to bootstrap NixOS
18
- * --skip-disko
19
- dont format disks with disko
20
18
* --stop-after-disko
21
19
exit after disko formating, you can then proceed to install manually or some other way
22
20
* --extra-files files
@@ -91,9 +89,6 @@ while [[ $# -gt 0 ]]; do
91
89
shift
92
90
shift
93
91
;;
94
- --skip-disko)
95
- skip_disko=y
96
- ;;
97
92
--stop-after-disko)
98
93
stop_after_disko=y
99
94
;;
@@ -298,12 +293,8 @@ for path in "${!disk_encryption_keys[@]}"; do
298
293
ssh_ " umask 077; cat > $path " < " ${disk_encryption_keys[$path]} "
299
294
done
300
295
301
- if [[ ${skip_disko} == " y" ]]; then
302
- echo " Skipping disko (partitioning)."
303
- else
304
- nix_copy --to " ssh://$ssh_connection " " $disko_script "
305
- ssh_ " $disko_script "
306
- fi
296
+ nix_copy --to " ssh://$ssh_connection " " $disko_script "
297
+ ssh_ " $disko_script "
307
298
308
299
if [[ ${stop_after_disko-n} == " y" ]]; then
309
300
# Should we also do this for `--no-reboot`?
You can’t perform that action at this time.
0 commit comments