potential (dirty) fix for installation error

This commit is contained in:
Akulij 2024-09-27 18:31:11 +05:00
parent ad9dd3e4cf
commit 22f7945d30
2 changed files with 8 additions and 1 deletions

View File

@ -6,7 +6,9 @@
]; ];
boot.loader.grub = { boot.loader.grub = {
# no need to set devices, disko will add all devices that have a EF02 partition to the list already # 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; efiSupport = true;
efiInstallAsRemovable = true; efiInstallAsRemovable = true;
}; };

View File

@ -7,6 +7,11 @@
content = { content = {
type = "gpt"; type = "gpt";
partitions = { partitions = {
boot = {
name = "boot";
size = "1M";
type = "EF02";
};
ESP = { ESP = {
size = "500M"; size = "500M";
type = "EF00"; type = "EF00";