From 76970ee1cd0f07d6f460532d5c026b00306ea9ca Mon Sep 17 00:00:00 2001 From: Rexiel Scarlet <37258415+Rexcrazy804@users.noreply.github.com> Date: Wed, 13 Aug 2025 12:04:02 +0400 Subject: [PATCH] nix: added rustc into default devShell --- nix/shell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nix/shell.nix b/nix/shell.nix index 965a0eb..ceecfc0 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -2,6 +2,7 @@ mkShell, rust-analyzer, rustfmt, + rustc, clippy, cargo, rustPlatform, @@ -13,6 +14,7 @@ mkShell { rustfmt clippy cargo + rustc ]; RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";