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 /gnu/tests | |
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 'gnu/tests')
-rw-r--r-- | gnu/tests/guix.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/tests/guix.scm b/gnu/tests/guix.scm index 6071cb018e..12ad1bf255 100644 --- a/gnu/tests/guix.scm +++ b/gnu/tests/guix.scm @@ -271,7 +271,7 @@ host all all ::1/128 trust")))))) (define %guix-home-service-os (simple-operating-system (service guix-home-service-type - `(("alice" . ,%guix-home-service-he))))) + `(("alice" ,%guix-home-service-he))))) (define (run-guix-home-service-test) (define os |