Make EBS volumes much smaller

Since they're resized on first boot anyway, they don't need to be big.

(cherry picked from commit ab0ddac8f9)
This commit is contained in:
Eelco Dolstra 2015-09-28 20:24:27 +02:00
parent 47026669ba
commit 323b0e77c7

View File

@ -12,7 +12,7 @@ with lib;
system.build.amazonImage = import ../../../lib/make-disk-image.nix {
inherit pkgs lib config;
partitioned = config.ec2.hvm;
diskSize = 8192;
diskSize = if config.ec2.hvm then 2048 else 8192;
configFile = pkgs.writeText "configuration.nix"
''
{