vbox-image: add new option to set free space in image

(cherry picked from commit a6700d75f38cda83367a8af84651a2a72ce0f3ef)
This commit is contained in:
lassulus 2021-07-24 09:33:10 +02:00 committed by Silvan Mosberger
parent b812e1f413
commit a2a5df1e63
1 changed files with 8 additions and 0 deletions

View File

@ -18,6 +18,13 @@ in {
The size of the VirtualBox base image in MiB.
'';
};
baseImageFreeSpace = mkOption {
type = with types; int;
default = 30 * 1024;
description = ''
Free space in the VirtualBox base image in MiB.
'';
};
memorySize = mkOption {
type = types.int;
default = 1536;
@ -117,6 +124,7 @@ in {
inherit pkgs lib config;
partitionTableType = "legacy";
diskSize = cfg.baseImageSize;
additionalSpace = cfg.baseImageFreeSpace;
postVM =
''