Decodal/devshell.nix

16 lines
173 B
Nix

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