Decodal/devshell.nix

18 lines
200 B
Nix

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