From a7c2e16eea552372c4758b90318623e3768e050c Mon Sep 17 00:00:00 2001 From: Peter Tillemans Date: Wed, 30 Jul 2025 23:54:56 +0200 Subject: [PATCH] force channel config --- snamellit/common.scm | 73 ++++++++++++++++++++++---------------------- 1 file changed, 37 insertions(+), 36 deletions(-) diff --git a/snamellit/common.scm b/snamellit/common.scm index b0a2ea0..a8f941b 100644 --- a/snamellit/common.scm +++ b/snamellit/common.scm @@ -232,42 +232,43 @@ "eval \"$(atuin init bash)\"" "if [[ \"$ALACRITTY_WINDOW_ID\" != \"\" ]]; then tmux; fi" ))))))) - (simple-service 'variant-packages-service - home-channels-service-type - (list - - (channel - (name 'guix) - (url (channel-url %default-guix-channel)) - (branch "rust-team") - (introduction - (make-channel-introduction - "9edb3f66fd807b096b48283debdcddccfea34bad" - (openpgp-fingerprint - "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA")))) - (channel - (name 'nonguix) - (url "https://gitlab.com/nonguix/nonguix") - ;; Enable signature verification: - (introduction - (make-channel-introduction - "897c1a470da759236cc11798f4e0a5f7d4d59fbc" - (openpgp-fingerprint - "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) - ;; (channel - ;; (name 'guix-science-nonfree) - ;; (url "https://codeberg.org/guix-science/guix-science-nonfree.git") - ;; (introduction - ;; (make-channel-introduction - ;; "58661b110325fd5d9b40e6f0177cc486a615817e" - ;; (openpgp-fingerprint - ;; "CA4F 8CF4 37D7 478F DA05 5FD4 4213 7701 1A37 8446")))) - (channel - (name 'snamguix) - (url "https://forge.snamellit.com/pti/snamguix") - (branch "main")) - - )) + ;; (simple-service 'variant-packages-service + + (service home-channels-service-type + (list + + (channel + (name 'guix) + (url (channel-url %default-guix-channel)) + (branch "rust-team") + (introduction + (make-channel-introduction + "9edb3f66fd807b096b48283debdcddccfea34bad" + (openpgp-fingerprint + "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA")))) + (channel + (name 'nonguix) + (url "https://gitlab.com/nonguix/nonguix") + ;; Enable signature verification: + (introduction + (make-channel-introduction + "897c1a470da759236cc11798f4e0a5f7d4d59fbc" + (openpgp-fingerprint + "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) + ;; (channel + ;; (name 'guix-science-nonfree) + ;; (url "https://codeberg.org/guix-science/guix-science-nonfree.git") + ;; (introduction + ;; (make-channel-introduction + ;; "58661b110325fd5d9b40e6f0177cc486a615817e" + ;; (openpgp-fingerprint + ;; "CA4F 8CF4 37D7 478F DA05 5FD4 4213 7701 1A37 8446")))) + (channel + (name 'snamguix) + (url "https://forge.snamellit.com/pti/snamguix") + (branch "main")) + + )) (service home-mcron-service-type) ))