From 53a730d8ddbf75d0eccd8adbdc0c6b5adff9fe08 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Tue, 23 Feb 2021 10:06:05 -0300 Subject: README.md: Use cons* over append + list --- README.md | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 856539b..dd0b9f7 100644 --- a/README.md +++ b/README.md @@ -14,18 +14,16 @@ See the list of packages in [`packages.json`][packages.json]. Add this channel to your `~/.config/guix/channels.scm`: ```scheme -(append - (list - (channel ...) - (channel - (name 'xyz-euandreh) - (url "git://git.euandreh.xyz/package-repository") - (branch "main") - (introduction - (make-channel-introduction - "d749e053e6db365069cb9b2ef47a78b06f9e7361" - (openpgp-fingerprint - "5BDA E9B8 B2F6 C6BC BB0D 6CE5 81F9 0EC3 CD35 6060"))))) +(cons* + (channel + (name 'xyz-euandreh) + (url "git://git.euandreh.xyz/package-repository") + (branch "main") + (introduction + (make-channel-introduction + "d749e053e6db365069cb9b2ef47a78b06f9e7361" + (openpgp-fingerprint + "5BDA E9B8 B2F6 C6BC BB0D 6CE5 81F9 0EC3 CD35 6060")))) %default-channels) ``` -- cgit v1.2.3