mothacehe pushed a commit to branch wip-image
in repository guix.
commit f802dbffdd6bae8a18ff3aae915fffcb3a64c9f4
Author: Mathieu Othacehe <[email protected]>
AuthorDate: Thu Dec 16 08:45:01 2021 +0100
image: Add a shared-store? field.
* gnu/image.scm (<image>)[shared-store?]: New field.
---
gnu/image.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/image.scm b/gnu/image.scm
index 1c954af..8423cf1 100644
--- a/gnu/image.scm
+++ b/gnu/image.scm
@@ -42,6 +42,7 @@
image-partitions
image-compression?
image-volatile-root?
+ image-shared-store?
image-substitutable?
image-type
@@ -95,6 +96,8 @@
(default #t))
(volatile-root? image-volatile-root? ;boolean
(default #t))
+ (shared-store? image-shared-store? ;boolean
+ (default #f))
(substitutable? image-substitutable? ;boolean
(default #t)))