From debbugs-submit-bounces@debbugs.gnu.org Wed May 22 06:12:38 2024 Received: (at submit) by debbugs.gnu.org; 22 May 2024 10:12:39 +0000 Received: from localhost ([127.0.0.1]:54979 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s9ixa-0000se-Fq for submit@debbugs.gnu.org; Wed, 22 May 2024 06:12:38 -0400 Received: from lists.gnu.org ([209.51.188.17]:53720) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s9ixW-0000sY-C5 for submit@debbugs.gnu.org; Wed, 22 May 2024 06:12:36 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1s9ixQ-00070V-8M for guix-patches@gnu.org; Wed, 22 May 2024 06:12:28 -0400 Received: from out-185.mta0.migadu.com ([91.218.175.185]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1s9ixL-0005B9-1g for guix-patches@gnu.org; Wed, 22 May 2024 06:12:28 -0400 X-Envelope-To: guix-patches@gnu.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=trop.in; s=key1; t=1716372740; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=r5Z76l9Kfa3EhkU79JqbMVnHNJPvLmgfX1DeBRnFJyo=; b=n21GSJNtEIVLGayY/A69q/SsQWkPq0bLn/nefdoSE2Xmr76/CgAxz5ojKGx84TaDa68eUq OGWOkgQNcD/MTHFUtvtvi9CbBDHETm8r9bYfF5Zvj1H2cQLKEulwbTZcZdHVsBgOhykvxf fRJmg0rKi0JOpXkKSxN9ymASRDkGVBmMTHe9tNIYIpQgkR66si3QqW09DCus+LKx2h4g+0 Hype/uI5pMwdRJi0bIuUVZMxc+Yn+mCPyYwoP0yxOJ3TYPGjfuiv7KhdxywbRs19od+hno Zass02/jsTK5PgbgVZr15UpLu7Z1tThqAvzdAQykwJALQpgFVjZvjCROoXzOng== X-Envelope-To: andrew@trop.in X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Andrew Tropin To: guix-patches@gnu.org Subject: [PATCH 1/1] services: home: Use pairs instead of lists. Date: Wed, 22 May 2024 14:02:27 +0400 Message-ID: <2917af36dcf4b76410200be5e3eb877dae526a76.1716372146.git.andrew@trop.in> In-Reply-To: References: MIME-Version: 1.0 X-Debbugs-Cc: Florian Pelz , Ludovic Courtès , Matthew Trzcinski , Maxim Cournoyer Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT Received-SPF: pass client-ip=91.218.175.185; envelope-from=andrew@trop.in; helo=out-185.mta0.migadu.com X-Spam_score_int: -16 X-Spam_score: -1.7 X-Spam_bar: - X-Spam_report: (-1.7 / 5.0 requ) BAYES_00=-1.9, DKIM_INVALID=0.1, DKIM_SIGNED=0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Andrew Tropin X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/services/guix.scm: Use pairs instead of lists. * doc/guix.texi: Update accordingly. * gnu/tests/guix.scm: Update accordingly. Change-Id: I0b8d3fa5b214add89bdb84a11fa20d1b319435f0 --- doc/guix.texi | 4 ++-- gnu/services/guix.scm | 2 +- gnu/tests/guix.scm | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index 8073e3f6d4..8cc5edc805 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -39576,7 +39576,7 @@ Guix Services (operating-system (services (append (list (service guix-home-service-type - `(("alice" ,my-home)))) + `(("alice" . ,my-home)))) %base-services))) @end lisp @@ -39585,7 +39585,7 @@ Guix Services @lisp (simple-service 'my-extra-home home-service-type - `(("bob" ,my-extra-home)))) + `(("bob" . ,my-extra-home)))) @end lisp @end defvar diff --git a/gnu/services/guix.scm b/gnu/services/guix.scm index 96f5ecaac0..1f0e2a310d 100644 --- a/gnu/services/guix.scm +++ b/gnu/services/guix.scm @@ -696,7 +696,7 @@ (define guix-data-service-type (define (guix-home-shepherd-service config) (map (match-lambda - ((user he) + ((user . he) (shepherd-service (documentation "Activate Guix Home.") (requirement '(user-processes)) diff --git a/gnu/tests/guix.scm b/gnu/tests/guix.scm index 12ad1bf255..6071cb018e 100644 --- a/gnu/tests/guix.scm +++ b/gnu/tests/guix.scm @@ -271,7 +271,7 @@ (define %guix-home-service-he (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 -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Wed May 22 07:13:20 2024 Received: (at control) by debbugs.gnu.org; 22 May 2024 11:13:20 +0000 Received: from localhost ([127.0.0.1]:55254 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s9juK-0004DL-3P for submit@debbugs.gnu.org; Wed, 22 May 2024 07:13:20 -0400 Received: from out-189.mta0.migadu.com ([91.218.175.189]:37109) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s9juH-0004DD-G8 for control@debbugs.gnu.org; Wed, 22 May 2024 07:13:18 -0400 X-Envelope-To: control@debbugs.gnu.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=trop.in; s=key1; t=1716376354; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=+JL/FAjCFYsVFIxGdckdmx4Zy1m5067BOpL8w7LHH4U=; b=oeeNU5YmS4N8kVtYcBN6aQwAQ1lEYZCqf5/TJBp2M/UAr/oL7Tayb5t74trUzYhHCD2eYP kbsik7l2syAYoxYkfpFm951MlA1gaLrqsq/Bf7lgI1NdT9ZIno8ktFexQfzCAbmE/BqmBB 2drEKO5l7nY1gzOQ4YFOUBICaR6vvUTDIA2c6x/dfe4/+Kt5l47CF880rbTFeSuhNy0ePX XR2Bu+RKkZ1x0WMmqTt7PZfPGNCpFuKkQqlzcwzHVe/z8QT6TO0c5HaIBHaBusrXLfUlRm Zf84TX2RLWC8ucMAenNFfQAEbdnzgmPVNevyNIZypVDERc7O4mCBAolRHgguUw== X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Andrew Tropin To: control@debbugs.gnu.org Subject: Re: [PATCH 1/1] services: home: Use pairs instead of lists. In-Reply-To: <875xv66scg.fsf@trop.in> References: <2917af36dcf4b76410200be5e3eb877dae526a76.1716372146.git.andrew@trop.in> <875xv66scg.fsf@trop.in> Date: Wed, 22 May 2024 15:12:28 +0400 Message-ID: <875xv6f6cj.fsf@trop.in> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Migadu-Flow: FLOW_OUT X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain close 71112 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEKEGaxlA4dEDH6S/6IgjSCVjB3rAFAmZN0xwACgkQIgjSCVjB 3rCftA//e0/w99b0N27vrA6Uq4pks0xzkPpcdd6B3sLsNNvne1hH5M27sdeezM3j ABt2Q8k0IWVap9o1+7a/0zhmy1qL0ucUHG9QH7QVDZYldIsobTAlKEYU1cyGg+dR HnGNIiYQzIrLiVvC1Pk4cFTE9Cs2tYyV4QK3EMmL5NYQQz5XivVk/gZHpY/OMjTd xdrZ3vFQDSjwU9FvQWqYQ0r3M4MWHhUyFefq6ruWu+gPuG6HmWiD1ywuHbMMYTJA N6A5qwCTQNW5Ubk/gPzty5x4gt2DQSR4vAz3PeOxpiWpvHOtOTj7SQN6eTZKH9Oi 9gbQN4N9xrJLiaOi4vxjT6ocqD9KRe9mqwOq6s9xIGGDJt7/3sa8TNlMiBfZlnK6 0ZBLo2izBHpvDvYAOu3l0eyhNGlq35Fxfq5tPje+PDuzEMJo3WYRTlv4oGp/X7kq CVRQLicgEXWUArlUWhtWMU+H0x/cncvvXWaM/1VoRZbbPdSDnU/ej4bSohK+649o ULPoFSCqrSRx6oeP2DxGIXRGtSZhHWwUCOu6D990H9XVPys764NVPIycumxSt3xO aGzSKy3IOxARheY87otvd8mmyu+BwQ+MszhfuObdh9ekczybnu4w1+F+R10Cayi6 vf2d56GrxBcufiZc5liQPvMfyEfnJdsUrzd5PVChuth/NB/57d4= =oxM3 -----END PGP SIGNATURE----- --=-=-=-- From unknown Sun Jun 22 00:05:27 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 19 Jun 2024 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator