From 76a0197bb6de660bf83422cc4594a6aabe79a3e9 Mon Sep 17 00:00:00 2001 From: Esteban Blanc Date: Wed, 14 Feb 2024 10:30:27 +0100 Subject: [PATCH] Fix devShells in the example flake.nix When trying to use the example flake.nix, the following error is given: "error: flake output attribute 'devShell.x86_64-linux' is not a derivation or path" This is due to a missing 's' in 'devShells.x86_64-linux' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 02076cd..2874bad 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ mkShell { pkgs = nixpkgs.legacyPackages.x86_64-linux; zephyr = zephyr-nix.packages.x86_64-linux; in { - devShell.x86_64-linux.default = pkgs.mkShell { + devShells.x86_64-linux.default = pkgs.mkShell { # Use the same mkShell as documented above }; };