chore: add nix shell to gitignore

This commit is contained in:
Zack Fu Zi Xiang 2024-01-25 10:37:31 +08:00
parent 1b9bc1648a
commit 66b6d773c8
2 changed files with 2 additions and 12 deletions

3
.gitignore vendored
View File

@ -12,4 +12,5 @@ node_modules
**/libs/AppFlowy-Collab/
data/
.env
.logs
.logs
shell.nix

View File

@ -1,11 +0,0 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [
pkg-config rustup
grpc-tools openssl
];
shellHook = ''
export PROTOC=$(which protoc)
'';
}