From d617e7bb354ca684e50cbb194aff887575ea9eba Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Tue, 17 Mar 2026 15:50:10 +0300 Subject: [PATCH] nix: use nightly rustfmt Signed-off-by: NotAShelf Change-Id: I6eaf1601eb69ef59c0fb5f20e03a5a416a6a6964 --- nix/shell.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/shell.nix b/nix/shell.nix index a0647a4..4559ca1 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -17,7 +17,7 @@ mkShell { cargo # Tools - rustfmt + (rustfmt.override {asNightly = true;}) clippy cargo taplo @@ -26,5 +26,5 @@ mkShell { rust-analyzer-unwrapped ]; - RUST_SRC_PATH = "${rustPlatform.rustLibSrc}"; -} \ No newline at end of file + env.RUST_SRC_PATH = "${rustPlatform.rustLibSrc}"; +}