mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
vm: Disable deduplication for 'guix system vm-image'.
* gnu/system/vm.scm (qemu-image): Pass #:deduplicate? #f to 'root-partition-initializer'.
This commit is contained in:
parent
bb3b6ccb05
commit
b5460d95e9
1 changed files with 6 additions and 1 deletions
|
@ -390,7 +390,12 @@ (define schema
|
|||
#:closures graphs
|
||||
#:copy-closures? #$copy-inputs?
|
||||
#:register-closures? #$register-closures?
|
||||
#:system-directory #$os-drv))
|
||||
#:system-directory #$os-drv
|
||||
|
||||
;; Disable deduplication to speed things up,
|
||||
;; and because it doesn't help much for a
|
||||
;; single system generation.
|
||||
#:deduplicate? #f))
|
||||
(root-size #$(if (eq? 'guess disk-image-size)
|
||||
#~(max
|
||||
;; Minimum 20 MiB root size
|
||||
|
|
Loading…
Reference in a new issue