Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

blog: update devShell to devShells for compatibility with recent spec #505

Merged
merged 1 commit into from
Jul 6, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions blog/nix-flakes-1-2022-02-21.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -275,13 +275,13 @@ project is using the same tools.
project folder I do not have any development tools
available.](conversation://Cadey/enby)

Flakes has the ability to specify this using the `devShell` flake output. You
Flakes has the ability to specify this using the `devShells` flake output. You
can add it to your `flake.nix` using this:

```nix
# after defaultApp
# after apps

devShell = forAllSystems (system:
devShells = forAllSystems (system:
let pkgs = nixpkgsFor.${system};
in {
default = pkgs.mkShell {
Expand Down