Fix development env (VSCode and nix develop)

On my machine, the latest refactoring seems to have broken the development environment and I could not access any of the dependencies specified in `shellDeps` or use any of the tools required by VSCode without this fix
This commit is contained in:
Davis Davalos-DeLosh 2022-04-28 23:24:57 -06:00 committed by GitHub
parent 41229a73ed
commit a1940b2d04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -89,9 +89,10 @@
};
# Used by `nix develop ...`
devShells = {
default = project false;
default = project true;
};
# For compatability with older Nix (eg in CI)
devShell = inputs.self.devShells.${system}.default;
defaultPackage = inputs.self.packages.${system}.default;
defaultApp = inputs.self.apps.${system}.default;
};