Make EBS volumes much smaller

Since they're resized on first boot anyway, they don't need to be big.
This commit is contained in:
Eelco Dolstra 2015-09-28 20:24:27 +02:00
parent 8eecf2d98a
commit ab0ddac8f9

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"
''
{