M gnu/system/vm.scm => gnu/system/vm.scm +2 -2
@@ 425,7 425,7 @@ environment with the store shared with the host. MAPPINGS is a list of
os
#:key
full-boot?
- (disk-image-size (* (if full-boot? 500 15) (expt 2 20))))
+ (disk-image-size (* (if full-boot? 500 30) (expt 2 20))))
"Return a derivation that builds a QEMU image of OS that shares its store
with the host.
@@ 480,7 480,7 @@ with '-virtfs' options for the host file systems listed in SHARED-FS."
(mappings '())
full-boot?
(disk-image-size
- (* (if full-boot? 500 15)
+ (* (if full-boot? 500 30)
(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.
M guix/scripts/system.scm => guix/scripts/system.scm +4 -1
@@ 477,7 477,10 @@ PATTERN, a string. When PATTERN is #f, display all the system generations."
((vm)
(system-qemu-image/shared-store-script os
#:full-boot? full-boot?
- #:disk-image-size image-size
+ #:disk-image-size
+ (if full-boot?
+ image-size
+ (* 30 (expt 2 20)))
#:mappings mappings))
((disk-image)
(system-disk-image os #:disk-image-size image-size))))