1
1
mirror of https://github.com/nmattia/niv.git synced 2024-11-20 12:45:50 +03:00

README: show nix-shell example instead of nix-env

nix-env is known to be a footgun especially for beginners
This commit is contained in:
fricklerhandwerk 2023-10-17 13:29:16 +02:00
parent 723f0eeb96
commit ee7b62ce5d

View File

@ -20,13 +20,13 @@ Painless dependencies for [Nix] projects. Read more in the [Getting started](#ge
`niv` is available in [`nixpkgs`](https://github.com/NixOS/nixpkgs) as `niv`:
``` bash
$ nix-env -iA nixpkgs.niv
$ nix-shell -p niv
```
Alternatively, run the following command to install the development version:
Alternatively, run the following command to use the development version:
``` bash
$ nix-env -iA niv -f https://github.com/nmattia/niv/tarball/master \
$ nix-shell -A niv-devshell https://github.com/nmattia/niv/tarball/master \
--substituters https://niv.cachix.org \
--trusted-public-keys niv.cachix.org-1:X32PCg2e/zAm3/uD1ScqW2z/K0LtDyNV7RdaxIuLgQM=
```