guix-packages/README.md
2024-01-21 15:09:23 -07:00

29 lines
542 B
Markdown

# guix-packages
Channel of software that I have packaged
If you don't already have one, 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"))
```
Finally run
```sh
guix pull
```