This commit is contained in:
Rph :3 2024-03-29 20:28:17 +01:00
parent 828977c3e3
commit f6ca835145

View File

@ -16,8 +16,15 @@
with pkgs;
{
devShells.default = mkShell {
packages = [
vscode-with-extensions.override {
vscodeExtensions = with vscode-extensions; [
rust-analyzer
];
}
];
buildInputs = [
rust-bin.nightly.latest.default
rust-bin.stable.latest.default
];
};
}