guix system: Increase image size for 'guix system vm'.

This is a followup to 9a1bfe7648.

* guix/scripts/system.scm (system-derivation-for-action): Add 40MiB to
the default size for 'vm'.
This commit is contained in:
Ludovic Courtès 2017-05-21 01:25:16 +02:00
parent 324499184a
commit 092c58e745
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -550,7 +550,7 @@ (define* (system-derivation-for-action os action
#:disk-image-size
(if full-boot?
image-size
(* 30 (expt 2 20)))
(* 70 (expt 2 20)))
#:mappings mappings))
((disk-image)
(system-disk-image os #:disk-image-size image-size))))