11 lines
132 B
Nix
11 lines
132 B
Nix
{ pkgs }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
rustc
|
|
cargo
|
|
];
|
|
shellHook = ''
|
|
echo "dev-shell-loaded"
|
|
'';
|
|
}
|