From 6cf341c90bb4d27d0217ad9c60425b9c0ff64605 Mon Sep 17 00:00:00 2001 From: Jeremy Stucki Date: Tue, 2 Jul 2024 22:39:11 +0200 Subject: [PATCH] Add rust-rover --- components/rust.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/rust.nix b/components/rust.nix index 9975805..a963706 100644 --- a/components/rust.nix +++ b/components/rust.nix @@ -1,5 +1,5 @@ { pkgs, ... }: { - home.packages = with pkgs; [ rustup ]; + home.packages = with pkgs; [ rustup ] ++ lib.optionals (!stdenv.isDarwin) [ jetbrains.rust-rover ]; }