diff options
author | Andrew Tropin <andrew@trop.in> | 2024-06-02 15:05:59 +0400 |
---|---|---|
committer | Andrew Tropin <andrew@trop.in> | 2024-06-02 15:06:16 +0400 |
commit | eac5171246da875f5996621c5329c833fd85b891 (patch) | |
tree | ed1828c72e5cae96d15acc64f2030e3a8f6f4a8b /doc | |
parent | d82e36591e4bbedb20131cba702ad677f39de954 (diff) |
Revert "services: home: Use pairs instead of lists."
This reverts commit dbeef44f3c520816251bde74c1005915a637e1ef.
Despite the more semantically correct data type, it doesn't follow the style
of the most services and also breaks user-facing API.
Change-Id: Ib4ef4e9cd2f53ac853a5b7c7c90e57c35c99a5ea
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index ea8ac24443..1224104038 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 |