fix URLs; fix ln command; fix typo
This commit is contained in:
parent
8fb4d54b96
commit
41e0cecef9
|
@ -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
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue