An open API service indexing awesome lists of open source software.

https://gitlab.com/orang3/small-guix

This repository hosts a small Guix Channel
https://gitlab.com/orang3/small-guix

guile guix

Last synced: about 1 year ago
JSON representation

This repository hosts a small Guix Channel

Awesome Lists containing this project

README

          

# Small Guix

🌿 Welcome to a small Guix channel!

## What is a Guix channel?

A [channel](https://guix.gnu.org/en/manual/devel/en/guix.html#Channels) is roughly the Guix equivalent of Ubuntu's PPAs or container registries. It's a software repository providing Guix package and service definitions.

This channel is a staging area for stuff I plan to upstream somewhere may it be Guix mainline or a community channel like [nonguix](https://gitlab.com/nonguix/nonguix). Packages or services like the following were born here and with time contributed where suitable:

- [Anytype](https://gitlab.com/nonguix/nonguix/-/blob/master/nongnu/packages/productivity.scm)
- [Google Chrome](https://gitlab.com/nonguix/nonguix/-/blob/master/nongnu/packages/chrome.scm?ref_type=heads)
- [misc K8s stuff](https://gitlab.com/nonguix/nonguix/-/blob/master/nongnu/packages/k8s.scm?ref_type=heads)
- [OCI Services](https://guix.gnu.org/en/manual/devel/en/guix.html#index-oci_002dcontainer_002dservice_002dtype)
- [Restic Backup service](https://guix.gnu.org/en/manual/devel/en/guix.html#index-restic_002dbackup_002dconfiguration)
- [Guix Home dotfiles](https://guix.gnu.org/en/manual/devel/en/guix.html#index-home_002ddotfiles_002dservice_002dtype)

It should be somewhat stable but no packages from this channel are used in production environments so beware. You can search for package and service definitions from this channel and many others at [toys.whereis.みんな](https://toys.whereis.みんな).

## Substitutes

Unfortunately currently there are no resources to distribute [substitutes](https://guix.gnu.org/en/manual/devel/en/guix.html#Substitutes).

## Configure

To configure Guix for using this channel you need to create a `.config/guix/channels.scm` file with the following content:

``` scheme
(cons* (channel
(name 'small-guix)
(url "https://gitlab.com/orang3/small-guix")
;; Enable signature verification:
(introduction
(make-channel-introduction
"f260da13666cd41ae3202270784e61e062a3999c"
(openpgp-fingerprint
"8D10 60B9 6BB8 292E 829B 7249 AED4 1CC1 93B7 01E2"))))
%default-channels)
```

Otherwise, if you already have a `.config/guix/channels.scm` you can simply prepend this channel to the preexisting ones:

``` scheme
(cons* (channel
(name 'small-guix)
(url "https://gitlab.com/orang3/small-guix")
;; Enable signature verification:
(introduction
(make-channel-introduction
"f260da13666cd41ae3202270784e61e062a3999c"
(openpgp-fingerprint
"8D10 60B9 6BB8 292E 829B 7249 AED4 1CC1 93B7 01E2"))))
(channel
(name 'nonguix)
(url "https://gitlab.com/nonguix/nonguix")
;; Enable signature verification:
(introduction
(make-channel-introduction
"897c1a470da759236cc11798f4e0a5f7d4d59fbc"
(openpgp-fingerprint
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
%default-channels)
```

## Contributing

All contributions are welcome. If you have commit access please remember to setup the authentication hook with

```bash
guix git authenticate --cache-key=channels/small-guix f260da13666cd41ae3202270784e61e062a3999c '8D10 60B9 6BB8 292E 829B 7249 AED4 1CC1 93B7 01E2'
```

## License

Unless otherwise stated all the files in this repository are to be considered under the GPL 3.0 terms. You are more than welcome to open issues or send patches.