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