Merge pull request #74 from naturallaw777/copilot/fix-disko-command-error

Fix disko ESP mount failure on dual-NVMe by splitting destroy/format into sequential calls
This commit is contained in:
Sovran_Systems
2026-04-05 09:42:51 -05:00
committed by GitHub

View File

@@ -730,15 +730,25 @@ class InstallerWindow(Adw.ApplicationWindow):
# ── Now run disko on a clean disk ──
GLib.idle_add(append_text, buf, "\n=== Partitioning drives ===\n")
cmd = [
"sudo", "disko", "--mode", "destroy,format,mount",
cmd_destroy = [
"sudo", "disko", "--mode", "destroy",
"--yes-wipe-all-disks",
f"{FLAKE}/iso/disko.nix",
"--arg", "device", boot_path
]
if data_path:
cmd += ["--arg", "dataDevice", data_path]
run_stream(cmd, buf)
cmd_destroy += ["--arg", "dataDevice", data_path]
run_stream(cmd_destroy, buf)
GLib.idle_add(append_text, buf, "\n=== Formatting and mounting drives ===\n")
cmd_format = [
"sudo", "disko", "--mode", "format,mount",
f"{FLAKE}/iso/disko.nix",
"--arg", "device", boot_path
]
if data_path:
cmd_format += ["--arg", "dataDevice", data_path]
run_stream(cmd_format, buf)
GLib.idle_add(append_text, buf, "\n=== Generating hardware config ===\n")
run_stream(["sudo", "nixos-generate-config", "--root", "/mnt"], buf)