aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/README.md b/README.md
index 0a77b87..408bb8b 100644
--- a/README.md
+++ b/README.md
@@ -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; })
];
};