From 97e64df5189c553cd18255fe72386de1efd22805 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Thu, 12 Oct 2023 12:45:49 +0200 Subject: [PATCH] ordering: 1MB partition as first partition --- template/disk-configs/simple-efi.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/template/disk-configs/simple-efi.nix b/template/disk-configs/simple-efi.nix index bdfaa03..9cf77f1 100644 --- a/template/disk-configs/simple-efi.nix +++ b/template/disk-configs/simple-efi.nix @@ -7,12 +7,12 @@ content = { type = "gpt"; partitions = { - boot = { + a_boot = { name = "boot"; size = "1M"; type = "EF02"; }; - ESP = { + b_ESP = { size = "500M"; type = "EF00"; content = { @@ -21,7 +21,7 @@ mountpoint = "/boot"; }; }; - root = { + c_root = { size = "100%"; content = { type = "filesystem";