Create shell.nix

This commit is contained in:
2023-03-08 22:08:44 +09:00
parent ea986917af
commit d67bd62393
4 changed files with 19 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
nodejs-16_x
nodePackages.yarn
(with dotnetCorePackages;
combinePackages [
sdk_6_0
aspnetcore_6_0
])
];
}