mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
image: Add a shared-store? field.
* gnu/image.scm (<image>)[shared-store?]: New field.
This commit is contained in:
parent
cc4e8a84f4
commit
594e9428c5
1 changed files with 3 additions and 0 deletions
|
@ -42,6 +42,7 @@ (define-module (gnu image)
|
|||
image-partitions
|
||||
image-compression?
|
||||
image-volatile-root?
|
||||
image-shared-store?
|
||||
image-substitutable?
|
||||
|
||||
image-type
|
||||
|
@ -95,6 +96,8 @@ (define-record-type* <image>
|
|||
(default #t))
|
||||
(volatile-root? image-volatile-root? ;boolean
|
||||
(default #t))
|
||||
(shared-store? image-shared-store? ;boolean
|
||||
(default #f))
|
||||
(substitutable? image-substitutable? ;boolean
|
||||
(default #t)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue