summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
authorAlex Griffin <a@ajgrf.com>2019-05-11 12:50:06 -0500
committerAlex Griffin <a@ajgrf.com>2019-05-11 12:55:52 -0500
commit9333cb2b681331d976977df0da5f0d362e5e1bc8 (patch)
tree767e9070f80f05b2a61c9d08585665752e06a637 /README.org
parent56990fb526f8fc6673765216e24710ab9c9ddeb8 (diff)
Add README.org
Diffstat (limited to 'README.org')
-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