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

Yang, Bo 6d69feb3 67f1e620

Changed files
+5
nixos
modules
virtualisation
+5
nixos/modules/virtualisation/google-compute-image.nix
···
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 = ''