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";