0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

Revert "nixos/amazon-image: (temporarily) use fixed disk size again"

This reverts commit 6a8359a92a.
This commit is contained in:
Luke Granger-Brown 2021-04-24 02:38:25 +00:00
parent d97478e369
commit f521b12b0e

View file

@ -41,8 +41,7 @@ in {
sizeMB = mkOption {
type = with types; either (enum [ "auto" ]) int;
# TODO(lukegb): this should be "auto"; see #120473
default = if config.ec2.hvm then 2048 else 8192;
default = "auto";
example = 8192;
description = "The size in MB of the image";
};