virtualisation/qemu-vm: Double the default diskSize

The default has been unchanged for a decade. Space is cheaper and
software catches up with that. Let's not make our testing harder
than necessary by default.
This commit is contained in:
Robert Hensing 2021-11-05 21:06:08 +01:00
parent 6f6f476bd6
commit 4ec119009b

View File

@ -318,7 +318,7 @@ in
virtualisation.diskSize =
mkOption {
type = types.nullOr types.ints.positive;
default = 512;
default = 1024;
description =
''
The disk size in megabytes of the virtual machine.