From 8210cb23f62a8bf53cdb925bafa5878e8f7d6e69 Mon Sep 17 00:00:00 2001 From: alyssa Date: Sun, 4 Aug 2024 07:25:02 +0900 Subject: [PATCH] feat: add basic shell.nix --- shell.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 00000000..04058224 --- /dev/null +++ b/shell.nix @@ -0,0 +1,12 @@ +{ pkgs ? import {} }: + +pkgs.mkShellNoCC { + packages = with pkgs; [ + cargo rust-analyzer rustfmt + gcc + protobuf + dotnet-sdk_6 + go + nodejs yarn + ]; +}