guix-packages/README.md

30 lines
570 B
Markdown
Raw Normal View History

2024-01-21 19:59:28 +00:00
# guix-packages
2024-01-21 15:08:02 -07:00
Channel of software that I have packaged
2024-01-21 15:09:23 -07:00
If you don't already have one, create a file at ~/.config/guix/channels.scm and paste the following:
2024-01-21 15:08:02 -07:00
```
(cons* (channel
(name 'skg)
2025-02-23 22:51:49 -07:00
(url "https://forge.superkamiguru.org/SuperKamiGuru/guix-packages.git")
2024-01-21 15:08:02 -07:00
(branch "main"))
%default-channels)
```
Otherwise if the file already exists, just add the following section to the list
```
(channel
(name 'skg)
2025-02-23 22:51:49 -07:00
(url "https://forge.superkamiguru.org/SuperKamiGuru/guix-packages.git")
2024-01-21 15:08:02 -07:00
(branch "main"))
```
2024-01-21 15:09:23 -07:00
Finally run
```sh
guix pull
```