mothacehe pushed a commit to branch wip-image
in repository guix.
commit 2fe9f7f9e1b1afc12cd64ff12b7e35432b1f4669
Author: Mathieu Othacehe <[email protected]>
AuthorDate: Thu Dec 16 09:25:49 2021 +0100
image: Add a shared-network? field.
* gnu/image.scm (<image>)[shared-network?]: New field.
---
gnu/image.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/image.scm b/gnu/image.scm
index 8423cf1..0b3a5a0 100644
--- a/gnu/image.scm
+++ b/gnu/image.scm
@@ -43,6 +43,7 @@
image-compression?
image-volatile-root?
image-shared-store?
+ image-shared-network?
image-substitutable?
image-type
@@ -98,6 +99,8 @@
(default #t))
(shared-store? image-shared-store? ;boolean
(default #f))
+ (shared-network? image-shared-network? ;boolean
+ (default #f))
(substitutable? image-substitutable? ;boolean
(default #t)))