diff options
author | EuAndreh <eu@euandre.org> | 2023-03-22 12:11:24 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-22 15:51:52 -0300 |
commit | b3ccc398cfd30ad9e243a041933204ea2e567535 (patch) | |
tree | 84ec606d88ace7e9d782d8e954b32d5d73bd6369 /README.md | |
parent | src/bin/paku: Get Base64 from paku.lock instead of calculating it (diff) | |
download | packages-b3ccc398cfd30ad9e243a041933204ea2e567535.tar.gz packages-b3ccc398cfd30ad9e243a041933204ea2e567535.tar.xz |
Support Homebrew
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -11,6 +11,7 @@ See the list of packages [online]. ## How to add this to different OSes + ### Guix Add this channel to your `~/.config/guix/channels.scm`: @@ -31,6 +32,7 @@ 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`: @@ -39,12 +41,13 @@ Adding the overlay to your `/etc/nixos/configuration.nix`: nixpkgs = { overlays = [ (import (fetchTarball { - url = "https://euandre.org/git/package-repository/snapshot/package-repository-main.tar.gz"; + url = "https://euandre.org/git/package-repository/snapshot/package-repository-main.tar.xz"; }) { inherit pkgs; }) ]; }; ``` + ### Debian ```shell @@ -52,9 +55,12 @@ $ wget -qO- https://euandre.org/s/package-repository/debian/public-key.asc | sud $ sudo apt-add-repository 'deb https://euandre.org/s/package-repository/debian ./' ``` -### Homebrew +### Homebrew +```shell +$ brew tap --force-auto-update org/euandre https://euandre.org/git/package-repository/ +``` ## Contributing |