diff options
Diffstat (limited to '')
-rw-r--r-- | README.md | 19 |
1 files changed, 15 insertions, 4 deletions
@@ -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+. |