diff --git a/README.md b/README.md index a6de8e6..0adda85 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ On NixOS we can install this overlay system-wide and then enable the GNUnet serv { ... nixpkgs.overlays = [ - (import (fetchGit https://ulrich.earth/code/nixpkgs-gnunet)) + (import (fetchGit https://code.ulrich.earth/christian/nixpkgs-gnunet.git)) ]; services.gnunet = { @@ -51,7 +51,8 @@ $ gnunet-arm -s We can install the overlay into the user environment like this: ```shell -$ ln -s ~/.config/nixpkgs/overlays/gnunet-overlay.nix gnunet-overlay +$ git clone https://code.ulrich.earth/christian/nixpkgs-gnunet.git +$ ln -s $(readlink -e nixpkgs-gnunet/default.nix) ~/.config/nixpkgs/overlays/nixpkgs-gnunet.nix ``` Now we can install the GNUnet package for our user. This will allow a *single-user setup* as described in the [official documentation](https://docs.gnunet.org/handbook/gnunet.html#Installing-GNUnet). @@ -63,5 +64,5 @@ Now we can [start GNUnet](https://docs.gnunet.org/handbook/gnunet.html#Starting- ``` $ touch ~/.config/gnuent.conf -$ gnuent-arm -s +$ gnunet-arm -s ```