fix URLs; fix ln command; fix typo

master
lurchi 2020-04-13 20:45:02 +02:00
parent 8fb4d54b96
commit 41e0cecef9
No known key found for this signature in database
GPG Key ID: 8241BE099775A097
1 changed files with 4 additions and 3 deletions

View File

@ -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
```