summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.org25
1 files changed, 25 insertions, 0 deletions
diff --git a/README.org b/README.org
new file mode 100644
index 0000000..49f3dff
--- /dev/null
+++ b/README.org
@@ -0,0 +1,25 @@
1#+TITLE: Nonguix
2
3Nonguix is a software repository for the
4[[https://www.gnu.org/software/guix/][GNU Guix]] package manager,
5which packages some software which cannot be included in the official
6distribution for ethical or policy-related reasons.
7
8Please do NOT promote this repository on any official Guix
9communication channels, such as their mailing lists or IRC channel, even in
10response to support requests! This is to show respect for the Guix project's
11[[http://www.gnu.org/distros/free-system-distribution-guidelines.html][strict policy]]
12against recommending nonfree software, and to avoid any unnecessary hostility.
13
14* Installation
15
16Nonguix can be installed as a
17[[https://www.gnu.org/software/guix/manual/en/html_node/Channels.html][Guix channel]].
18To do so, add it to =~/.config/guix/channels.scm=:
19
20#+BEGIN_SRC scheme
21 (cons* (channel
22 (name 'nonguix)
23 (url "https://gitlab.com/ajgrf/nonguix"))
24 %default-channels)
25#+END_SRC