amazon-image.nix: Resolve failure to include resize2fs

Since 34234dcb51, for resize2fs to be automatically included in
initrd, a filesystem needed for boot must be explicitly defined as an
ext* type filesystem.
This commit is contained in:
talyz
2019-03-15 17:33:45 +01:00
parent d738f0d7d6
commit 261372b69c
2 changed files with 2 additions and 0 deletions
@@ -31,6 +31,7 @@ in
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
autoResize = true;
};