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
1 changed files with 1 additions and 1 deletions

View File

@ -550,7 +550,7 @@ PATTERN, a string. When PATTERN is #f, display all the system generations."
#: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))))