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:
parent
41229a73ed
commit
a1940b2d04
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue