google-compute-image: add the missing /boot filesystem

This commit is contained in:
Yang, Bo 2023-11-15 17:29:57 -08:00 committed by Jörg Thalheim
parent 67f1e6206a
commit 6d69feb35e

View File

@ -56,6 +56,11 @@ in
efiInstallAsRemovable = true;
};
fileSystems."/boot" = mkIf cfg.efi {
device = "/dev/disk/by-label/ESP";
fsType = "vfat";
};
system.build.googleComputeImage = import ../../lib/make-disk-image.nix {
name = "google-compute-image";
postVM = ''