openstackImage: set the / fsType to reenable root FS resizing

Since 34234dcb51, the reisizefs tool is
embeded only if the `fsType` starts with `ext`. The default `fsType`
value is `auto`.
This commit is contained in:
Antoine Eiche 2019-03-21 10:04:07 +01:00
parent de0612c46c
commit f116d046f6

View File

@ -20,6 +20,7 @@ in
config = {
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
autoResize = true;
};