From 91b2e70ddef267d02d8bbdef9bd53fe454456905 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sat, 1 Jan 2022 17:08:48 +0530 Subject: [PATCH] nix: remove `rust-analyzer-preview` from toolchain extensions --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 8986206..1c2e158 100644 --- a/shell.nix +++ b/shell.nix @@ -3,7 +3,7 @@ mkShell { buildInputs = [ (rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override { - extensions = [ "rust-analyzer-preview" "rust-src" "rustfmt-preview" ]; + extensions = [ "rust-src" "rustfmt-preview" ]; })) xorg.libxcb ];