aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--README.md19
1 files changed, 15 insertions, 4 deletions
diff --git a/README.md b/README.md
index 7a5f91d..0a77b87 100644
--- a/README.md
+++ b/README.md
@@ -6,10 +6,7 @@ packagers.
## Guix
-Custom Guix channel for packages not compatible with mainline Guix, or not
-packaged there yet.
-
-To add this channel to your `~/.config/guix/channels.scm`:
+Add this channel to your `~/.config/guix/channels.scm`:
```scheme
(append
@@ -30,6 +27,20 @@ To add this channel to your `~/.config/guix/channels.scm`:
See also the Guix manual for usage on channels:
https://guix.gnu.org/manual/en/guix.html#Channels
+## NixOS
+
+Adding the overlay to your `/etc/nixos/configuration.nix`:
+
+```nix
+ nixpkgs = {
+ overlays = [
+ (import (fetchTarball {
+ url = "https://git.euandreh.xyz/euandreh-package-repository/snapshot/euandreh-package-repository-main.tar.gz";
+ }) { inherit pkgs; })
+ ];
+ };
+```
+
## LICENSE
Packaging code licensed under AGPLv3+.