From 22f7945d30878f2fac7e046566598b4ad41736b5 Mon Sep 17 00:00:00 2001 From: Akulij Date: Fri, 27 Sep 2024 18:31:11 +0500 Subject: [PATCH] potential (dirty) fix for installation error --- configuration.nix | 4 +++- disk-config.nix | 5 +++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 5c06392..7db4036 100644 --- a/configuration.nix +++ b/configuration.nix @@ -6,7 +6,9 @@ ]; boot.loader.grub = { # no need to set devices, disko will add all devices that have a EF02 partition to the list already - # devices = [ ]; + devices = [ + "/dev/nvme0n1" + ]; efiSupport = true; efiInstallAsRemovable = true; }; diff --git a/disk-config.nix b/disk-config.nix index a53282c..2e99e5c 100644 --- a/disk-config.nix +++ b/disk-config.nix @@ -7,6 +7,11 @@ content = { type = "gpt"; partitions = { + boot = { + name = "boot"; + size = "1M"; + type = "EF02"; + }; ESP = { size = "500M"; type = "EF00";