diff options
| author | EuAndreh <eu@euandre.org> | 2025-10-18 14:21:52 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2025-10-18 14:21:52 -0300 |
| commit | e4a0dfcc883c805d00b3467da2a21253c7703939 (patch) | |
| tree | c5f903befeabc45dc3ffbf2e16170ee3cc83d6f3 /etc/guix | |
| parent | etc/sh/rc: -Wno-poiter-arith in $CFLAGS (diff) | |
| download | dotfiles-e4a0dfcc883c805d00b3467da2a21253c7703939.tar.gz dotfiles-e4a0dfcc883c805d00b3467da2a21253c7703939.tar.xz | |
etc/guix/channels.scm: Use literal channel for new guix repo
Diffstat (limited to '')
| -rw-r--r-- | etc/guix/channels.scm | 55 |
1 files changed, 31 insertions, 24 deletions
diff --git a/etc/guix/channels.scm b/etc/guix/channels.scm index 6c0d71a..f2a4540 100644 --- a/etc/guix/channels.scm +++ b/etc/guix/channels.scm @@ -1,25 +1,32 @@ -(append - (list - (channel - (name 'EuAndreh) - (url "git://euandre.org/packages") - (branch "main") - (introduction - (make-channel-introduction - "d749e053e6db365069cb9b2ef47a78b06f9e7361" - (openpgp-fingerprint - "5BDA E9B8 B2F6 C6BC BB0D 6CE5 81F9 0EC3 CD35 6060")))) +(list + (channel + (name 'EuAndreh) + (url "git://euandre.org/packages") + (branch "main") + (introduction + (make-channel-introduction + "d749e053e6db365069cb9b2ef47a78b06f9e7361" + (openpgp-fingerprint + "5BDA E9B8 B2F6 C6BC BB0D 6CE5 81F9 0EC3 CD35 6060")))) #; - (channel - (name 'the-dam) - (url "https://gitlab.com/edouardklein/guix") - (branch "beaverlabs")) - (channel - (name 'nonguix) - (url "https://gitlab.com/nonguix/nonguix") - (introduction - (make-channel-introduction - "897c1a470da759236cc11798f4e0a5f7d4d59fbc" - (openpgp-fingerprint - "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))) - %default-channels) + (channel + (name 'the-dam) + (url "https://gitlab.com/edouardklein/guix") + (branch "beaverlabs")) + (channel + (name 'nonguix) + (url "https://gitlab.com/nonguix/nonguix") + (introduction + (make-channel-introduction + "897c1a470da759236cc11798f4e0a5f7d4d59fbc" + (openpgp-fingerprint + "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) + (channel + (name 'guix) + (url "https://codeberg.org/guix/guix.git") + (branch "master") + (introduction + (make-channel-introduction + "9edb3f66fd807b096b48283debdcddccfea34bad" ;2020-05-26 + (openpgp-fingerprint ;mbakke + "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA"))))) |
