Readme: Fix flake-info command (#380)

The flake attribute must directly name the app.

Previously, the command failed with:
error: cannot find flake attribute 'github:nixos/nixos-search#apps.flake'
This commit is contained in:
erikarvstedt 2021-12-06 18:48:18 +01:00 committed by GitHub
parent bd59a80130
commit 875eedde46
Failed to generate hash of commit

View file

@ -68,5 +68,5 @@ Possible types are `github`, `gitlab`, and `git` (which is the fallback for any
To test whether your flake is compatible with nix flake-info you can try running `flake-info` against it
```
$ nix run github:nixos/nixos-search#apps.flake-info -- flake <your flake handle>
$ nix run github:nixos/nixos-search#flake-info -- flake <your flake handle>
```