diff options
author | EuAndreh <eu@euandre.org> | 2021-02-23 10:06:05 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-02-23 10:06:05 -0300 |
commit | 53a730d8ddbf75d0eccd8adbdc0c6b5adff9fe08 (patch) | |
tree | 29201fb6e8ddb4cb4e2ed5425dbb9a208bf88484 | |
parent | Update aux/ci/ci-build.sh (diff) | |
download | package-repository-53a730d8ddbf75d0eccd8adbdc0c6b5adff9fe08.tar.gz package-repository-53a730d8ddbf75d0eccd8adbdc0c6b5adff9fe08.tar.xz |
README.md: Use cons* over append + list
Diffstat (limited to '')
-rw-r--r-- | README.md | 22 |
1 files changed, 10 insertions, 12 deletions
@@ -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) ``` |