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'
This commit is contained in:
Esteban Blanc 2024-02-14 10:30:27 +01:00 committed by adisbladis
parent 6ad6ae9ed9
commit 76a0197bb6
1 changed files with 1 additions and 1 deletions

View File

@ -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
};
};