Revert "treewide: use auto diskSize for make-disk-image"

This reverts commit f3aa040bcb.
This commit is contained in:
Luke Granger-Brown
2021-04-24 02:38:36 +00:00
parent f521b12b0e
commit 4fb91cbafe
9 changed files with 16 additions and 22 deletions
@@ -40,9 +40,8 @@ in {
};
sizeMB = mkOption {
type = with types; either (enum [ "auto" ]) int;
default = "auto";
example = 8192;
type = types.int;
default = if config.ec2.hvm then 2048 else 8192;
description = "The size in MB of the image";
};