feat: add basic shell.nix

This commit is contained in:
alyssa 2024-08-04 07:25:02 +09:00
parent 6e01238364
commit 8210cb23f6

12
shell.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShellNoCC {
packages = with pkgs; [
cargo rust-analyzer rustfmt
gcc
protobuf
dotnet-sdk_6
go
nodejs yarn
];
}