Increase Virtualbox disk image size

10G is not enough for a desktop installation, and resizing a Virtualbox disk image is a pain. 
Let's increase the default disk size to 100G. It does not require more storage space, since the empty bits are left out.
This commit is contained in:
Márton Boros 2018-09-13 23:15:41 +02:00 committed by GitHub
parent 04cba83e7f
commit f96dde6fd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ in {
virtualbox = {
baseImageSize = mkOption {
type = types.int;
default = 10 * 1024;
default = 100 * 1024;
description = ''
The size of the VirtualBox base image in MiB.
'';