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

authored by

Yang, Bo and committed by
Jörg Thalheim
6d69feb3 67f1e620

+5
+5
nixos/modules/virtualisation/google-compute-image.nix
··· 56 56 efiInstallAsRemovable = true; 57 57 }; 58 58 59 + fileSystems."/boot" = mkIf cfg.efi { 60 + device = "/dev/disk/by-label/ESP"; 61 + fsType = "vfat"; 62 + }; 63 + 59 64 system.build.googleComputeImage = import ../../lib/make-disk-image.nix { 60 65 name = "google-compute-image"; 61 66 postVM = ''