diff --git a/.gitignore b/.gitignore index 0bd4b23d..a2771d3c 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,5 @@ node_modules **/libs/AppFlowy-Collab/ data/ .env -.logs \ No newline at end of file +.logs +shell.nix diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 511d2a6d..00000000 --- a/shell.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ pkgs ? import {} }: - -pkgs.mkShell { - packages = with pkgs; [ - pkg-config rustup - grpc-tools openssl - ]; - shellHook = '' - export PROTOC=$(which protoc) - ''; -}