diff options
| author | Loric Brevet <loric.brevet@gmail.com> | 2022-07-06 23:08:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-06 17:08:16 -0400 |
| commit | 04151593cc701646c80c407a7641e6fcf242f95c (patch) | |
| tree | b3f029b020e476bc04c27d32e86dfc0f85549631 | |
| parent | a6ddd7e3a627f2a47edde1c0d6b0ebd6d2a167ec (diff) | |
| download | xesite-04151593cc701646c80c407a7641e6fcf242f95c.tar.xz xesite-04151593cc701646c80c407a7641e6fcf242f95c.zip | |
blog: update devShell to devShells for compatibility with recent spec (#505)
| -rw-r--r-- | blog/nix-flakes-1-2022-02-21.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/blog/nix-flakes-1-2022-02-21.markdown b/blog/nix-flakes-1-2022-02-21.markdown index fd8da37..be3d751 100644 --- a/blog/nix-flakes-1-2022-02-21.markdown +++ b/blog/nix-flakes-1-2022-02-21.markdown @@ -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 { |
