use default rust toolchain components

This commit is contained in:
Clément DOUIN
2022-05-28 20:03:27 +02:00
parent 3f5feed0ff
commit a0461d84ba
2 changed files with 1 additions and 3 deletions
+1 -2
View File
@@ -58,7 +58,7 @@
# nix develop
devShell = pkgs.mkShell {
inputsFrom = builtins.attrValues self.packages.${system};
buildInputs = with pkgs; [
nativeBuildInputs = with pkgs; [
# Nix LSP + formatter
rnix-lsp
nixpkgs-fmt
@@ -67,7 +67,6 @@
(rust-bin.fromRustupToolchainFile ./rust-toolchain.toml)
cargo-watch
rust-analyzer
rustfmt
# Notmuch
notmuch
-1
View File
@@ -1,3 +1,2 @@
[toolchain]
channel = "1.58.1"
components = ["cargo", "rustc", "rustfmt", "rust-analysis", "clippy"]