From 3192ce9eca5877dd02c756808a95a58deb257462 Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Sun, 2 Jun 2024 12:21:47 +0200 Subject: [PATCH] flake: Add rust-analyzer --- flake.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 7e966ae..1937707 100644 --- a/flake.nix +++ b/flake.nix @@ -24,7 +24,13 @@ { devShells = { default = pkgs.mkShell { - buildInputs = [ rust nodejs pkgs.cargo-leptos pkgs.dart-sass ]; + buildInputs = [ + rust + nodejs + pkgs.cargo-leptos + pkgs.dart-sass + pkgs.rust-analyzer + ]; }; }; });