From 404990f9282a1224dd5cf8e4073469bd6d3024d0 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Wed, 20 Aug 2025 09:40:06 +0300 Subject: [PATCH] nix: update devshell Signed-off-by: NotAShelf Change-Id: I6a6a696451203d6ac74ae44dddec1bdce19e78d9 --- nix/shell.nix | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/nix/shell.nix b/nix/shell.nix index ceecfc0..9df0432 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -1,20 +1,25 @@ { mkShell, - rust-analyzer, - rustfmt, rustc, - clippy, cargo, + rustfmt, + clippy, + taplo, + rust-analyzer-unwrapped, rustPlatform, }: mkShell { name = "rust"; + packages = [ - rust-analyzer - rustfmt + rustc + cargo + + (rustfmt.override {asNightly = true;}) clippy cargo - rustc + taplo + rust-analyzer-unwrapped ]; RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";