aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/vm.scm
diff options
context:
space:
mode:
authorMarius Bakke <mbakke@fastmail.com>2017-05-20 21:28:20 +0200
committerMarius Bakke <mbakke@fastmail.com>2017-05-21 01:07:12 +0200
commit9a1bfe764859365b6726f168da95b88a2d22403b (patch)
tree900879f6b1d0d98fffdaadc2f550d4ba06f61432 /gnu/system/vm.scm
parentfda33e495b5ae0ad4688588f1b07c15dc04305c7 (diff)
downloadguix-9a1bfe764859365b6726f168da95b88a2d22403b.tar
guix-9a1bfe764859365b6726f168da95b88a2d22403b.tar.gz
vm: Increase default disk size to account for ESP partition.
Fixes a test regression introduced by ecf5d5376979fadd971559367bf553df89fcc62b. * gnu/system/vm.scm (system-qemu-image/shared-store-script): 30MiB -> 70MiB.
Diffstat (limited to 'gnu/system/vm.scm')
-rw-r--r--gnu/system/vm.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm
index d282ba557a..ad5e6b75bb 100644
--- a/gnu/system/vm.scm
+++ b/gnu/system/vm.scm
@@ -499,7 +499,7 @@ with '-virtfs' options for the host file systems listed in SHARED-FS."
(mappings '())
full-boot?
(disk-image-size
- (* (if full-boot? 500 30)
+ (* (if full-boot? 500 70)
(expt 2 20))))
"Return a derivation that builds a script to run a virtual machine image of
OS that shares its store with the host.