We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rust-toolchain
1 parent 470fbeb commit 6dfdfaaCopy full SHA for 6dfdfaa
flake.nix
@@ -29,16 +29,17 @@
29
30
devShells =
31
let
32
- rust-toolchain = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
+ rust-toolchain = pkgs.rust-bin.stable.latest.default.override {
33
+ extensions = [ "rust-analyzer" ];
34
+ };
35
in
36
{
37
default =
38
39
package = pkgs.callPackage (import ./nix/package.nix) { };
40
41
pkgs.mkShell {
- packages = with pkgs; [
- ] ++ [ rust-toolchain ];
42
+ packages = [ rust-toolchain ];
43
44
buildInputs = package.buildInputs;
45
nativeBuildInputs = package.nativeBuildInputs;
rust-toolchain.toml
0 commit comments