From a1940b2d04599330649b922c1b32792bcd6cfb04 Mon Sep 17 00:00:00 2001 From: Davis Davalos-DeLosh Date: Thu, 28 Apr 2022 23:24:57 -0600 Subject: [PATCH] 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 --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index b374477..77b51ea 100644 --- a/flake.nix +++ b/flake.nix @@ -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; };