Merge pull request #132345 from lukegb/fix-eval

nixos/virtualbox-image: cast baseImageFreeSpace to str

authored by Luke Granger-Brown and committed by GitHub 142da944 cf44857e

+1 -1
+1 -1
nixos/modules/virtualisation/virtualbox-image.nix
··· 136 inherit pkgs lib config; 137 partitionTableType = "legacy"; 138 diskSize = cfg.baseImageSize; 139 - additionalSpace = cfg.baseImageFreeSpace; 140 141 postVM = 142 ''
··· 136 inherit pkgs lib config; 137 partitionTableType = "legacy"; 138 diskSize = cfg.baseImageSize; 139 + additionalSpace = "${toString cfg.baseImageFreeSpace}M"; 140 141 postVM = 142 ''