raw-efi: add /boot partition

This commit is contained in:
lassulus 2022-04-26 18:53:24 +02:00
parent 3cc7d08029
commit db5c176919

View File

@ -8,6 +8,11 @@
efiInstallAsRemovable = true;
};
fileSystems."/boot" = {
device = "/dev/vda1";
fsType = "vfat";
};
system.build.raw = lib.mkOverride 999 (import "${toString modulesPath}/../lib/make-disk-image.nix" {
inherit lib config pkgs;
partitionTableType = "efi";