From 875eedde4699471c2e25e81a89dbe1cbceea02fc Mon Sep 17 00:00:00 2001 From: erikarvstedt <36110478+erikarvstedt@users.noreply.github.com> Date: Mon, 6 Dec 2021 18:48:18 +0100 Subject: [PATCH] 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' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 29213c3..34fc81b 100644 --- a/README.md +++ b/README.md @@ -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 +$ nix run github:nixos/nixos-search#flake-info -- flake ```