docs: unpin nix install commands in README

This commit is contained in:
2026-07-26 23:26:19 +04:00
parent d35295c1d9
commit 5b301c42a9
+3 -3
View File
@@ -63,20 +63,20 @@ docker run --rm -it aykhans/sarin -f https://example.com/config.yaml
Run directly without installing (requires flakes enabled):
```sh
nix run github:aykhans/sarin/v1.4.0 -- -U http://example.com -r 100 -c 10
nix run github:aykhans/sarin -- -U http://example.com -r 100 -c 10
```
Install into your profile:
```sh
nix profile install github:aykhans/sarin/v1.4.0
nix profile install github:aykhans/sarin
```
Or add it to your own flake via the overlay:
```nix
{
inputs.sarin.url = "github:aykhans/sarin/v1.4.0";
inputs.sarin.url = "github:aykhans/sarin";
# In your outputs, apply the overlay to nixpkgs:
# nixpkgs.overlays = [ inputs.sarin.overlays.default ];