From ef327a7bb9e7d22d8ab5de7c01374ccb3fb310ad Mon Sep 17 00:00:00 2001 From: Chad Nelson Date: Sun, 21 Jan 2024 15:08:02 -0700 Subject: [PATCH] updated Readme --- README.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 82bb108..c9f127a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,22 @@ # guix-packages -Channel of software that I have packaged \ No newline at end of file +Channel of software that I have packaged + +If you don't already, create a file at ~/.config/guix/channels.scm and paste the following: + +``` +(cons* (channel + (name 'skg) + (url "https://pagure.io/SuperKamiGuru/guix-packages.git") + (branch "main")) + %default-channels) +``` + +Otherwise if the file already exists, just add the following section to the list + +``` +(channel + (name 'skg) + (url "https://pagure.io/SuperKamiGuru/guix-packages.git") + (branch "main")) +```