diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | README.md | 11 | ||||
-rw-r--r-- | aux/guix/pinned-channels.scm | 2 |
3 files changed, 9 insertions, 8 deletions
@@ -6,8 +6,8 @@ check: clean: rm -rf public/ -NAME_UC = EuAndreh package repository -NAME = euandreh-package-repository +NAME_UC = EuAndreh's package repository +NAME = package-repository MAILING_LIST = public-inbox public: README.md TODOs.md sh aux/workflow/TODOs.sh '$(NAME_UC)' $(NAME) $(MAILING_LIST) @@ -1,10 +1,11 @@ -# euandreh-package-repository +# EuAndreh's package-repository Personal package repository for a variety of operating systems, mainly for packaging personal projects of mine and make it available for users and packagers. -## Guix +## How to add this to different OSes +### Guix Add this channel to your `~/.config/guix/channels.scm`: @@ -14,7 +15,7 @@ Add this channel to your `~/.config/guix/channels.scm`: (channel ...) (channel (name 'xyz-euandreh) - (url "git://git.euandreh.xyz/euandreh-package-repository") + (url "git://git.euandreh.xyz/package-repository") (branch "main") (introduction (make-channel-introduction @@ -27,7 +28,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 +### NixOS Adding the overlay to your `/etc/nixos/configuration.nix`: @@ -35,7 +36,7 @@ Adding the overlay to your `/etc/nixos/configuration.nix`: nixpkgs = { overlays = [ (import (fetchTarball { - url = "https://git.euandreh.xyz/euandreh-package-repository/snapshot/euandreh-package-repository-main.tar.gz"; + url = "https://git.euandreh.xyz/package-repository/snapshot/package-repository-main.tar.gz"; }) { inherit pkgs; }) ]; }; diff --git a/aux/guix/pinned-channels.scm b/aux/guix/pinned-channels.scm index aebc02c..57a8555 100644 --- a/aux/guix/pinned-channels.scm +++ b/aux/guix/pinned-channels.scm @@ -1,7 +1,7 @@ (list (channel (name 'xyz-euandreh) - (url "git://git.euandreh.xyz/euandreh-package-repository") + (url "git://git.euandreh.xyz/package-repository") (branch "main") (introduction (make-channel-introduction |