summaryrefslogtreecommitdiff
path: root/doc/guix.texi
diff options
context:
space:
mode:
authorAndrew Tropin <andrew@trop.in>2024-05-22 13:49:37 +0400
committerAndrew Tropin <andrew@trop.in>2024-06-02 13:38:52 +0400
commitdbeef44f3c520816251bde74c1005915a637e1ef (patch)
tree1acade4b0055a56491859f9221c5c8f0746b68f5 /doc/guix.texi
parentfa7906d64881ee12e0c418136b44c73766e3d169 (diff)
services: home: Use pairs instead of lists.
* gnu/services/guix.scm: Use pairs instead of lists. * doc/guix.texi: Update accordingly. * gnu/tests/guix.scm: Update accordingly. Change-Id: I0b8d3fa5b214add89bdb84a11fa20d1b319435f0
Diffstat (limited to 'doc/guix.texi')
-rw-r--r--doc/guix.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index 1224104038..ea8ac24443 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -39607,7 +39607,7 @@ the value is a home-environment configuration.
(operating-system
(services (append (list (service guix-home-service-type
- `(("alice" ,my-home))))
+ `(("alice" . ,my-home))))
%base-services)))
@end lisp
@@ -39616,7 +39616,7 @@ environments, as in this example:
@lisp
(simple-service 'my-extra-home home-service-type
- `(("bob" ,my-extra-home))))
+ `(("bob" . ,my-extra-home))))
@end lisp
@end defvar