Decodal/devshell.nix

20 lines
222 B
Nix

{ pkgs }:
pkgs.mkShell {
packages = with pkgs; [
cargo
clippy
git
lld
nodejs
nixfmt
rustc
rustfmt
tree-sitter
wasm-pack
];
shellHook = ''
echo "decodal dev shell"
'';
}