Skip to content

Commit

Permalink
fix: (value "Unbound variable: ~S") (value (linux-libre-6.6))
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan4yin committed Dec 28, 2023
1 parent 5a3950d commit ce30cef
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 18 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ Tutorials for Guix itself:
- [GNU Guix Reference Manual](https://guix.gnu.org/en/manual/en/guix.html): read this first for installation and basic usage & setup.
- [GNU Guix Cookbook](https://guix.gnu.org/en/cookbook/en/guix-cookbook.html): read this after you have your Guix installed and have some basic knowledge about Guix.

## Notes

1. `cons* arg1 arg2 …`: a syntax sugar of `(cons arg1 (cons arg2 (cons … argn)))`

30 changes: 12 additions & 18 deletions channels.scm
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
(list
;; packages some non-free software which cannot be included in the official distribution
(channel
(name 'nonguix)
(url "https://github.com/nonguix/nonguix")
;; Enable signature verification:
(introduction
(make-channel-introduction
"897c1a470da759236cc11798f4e0a5f7d4d59fbc"
(openpgp-fingerprint
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
;; default guix channel
;; https://git.savannah.gnu.org/cgit/guix.git/refs/heads
(channel
(inherit (car %default-channels))
;; Stay on the version 1.4.0 to avoid too much update
(branch "version-1.4.0")))

(cons* (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"))))
;; default guix channel
;; https://git.savannah.gnu.org/cgit/guix.git/refs/heads
%default-channels)

0 comments on commit ce30cef

Please sign in to comment.