Fix broken VS code shells

See https://github.com/NixOS/nix/issues/6982#issuecomment-1236743200
This commit is contained in:
Tim Van Baak 2024-08-08 07:47:32 -07:00
parent 26e268c3a0
commit 4bbd29ac93
1 changed files with 5 additions and 1 deletions

View File

@ -9,7 +9,11 @@
in rec { in rec {
devShell = pkgs.mkShell { devShell = pkgs.mkShell {
DOTNET_CLI_TELEMETRY_OPTOUT = 1; DOTNET_CLI_TELEMETRY_OPTOUT = 1;
packages = [ pkgs.dotnet-sdk pkgs.dotnetPackages.NUnit3 ]; packages = [
pkgs.bashInteractive
pkgs.dotnet-sdk
pkgs.dotnetPackages.NUnit3
];
}; };
} }
); );