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:
parent
6ad6ae9ed9
commit
76a0197bb6
|
@ -86,7 +86,7 @@ mkShell {
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
zephyr = zephyr-nix.packages.x86_64-linux;
|
zephyr = zephyr-nix.packages.x86_64-linux;
|
||||||
in {
|
in {
|
||||||
devShell.x86_64-linux.default = pkgs.mkShell {
|
devShells.x86_64-linux.default = pkgs.mkShell {
|
||||||
# Use the same mkShell as documented above
|
# Use the same mkShell as documented above
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue