diff --git a/home-manager/common/programs/devel.nix b/home-manager/common/programs/devel.nix index fca5c70..ca58238 100644 --- a/home-manager/common/programs/devel.nix +++ b/home-manager/common/programs/devel.nix @@ -53,7 +53,6 @@ with lib; with nLib; { cargo-bloat # Find out what's taking up space in the executable cargo-udeps # Find unused dependencies cargo-expand # Dump expanded macros - unstable.cargo-tarpaulin # Code coverage cargo-play # Quickly execute code outside of a crate # For building stuff that uses protocol buffers protobuf diff --git a/home-manager/linux/programs/devel.nix b/home-manager/linux/programs/devel.nix index 01b0a4e..f8588b5 100644 --- a/home-manager/linux/programs/devel.nix +++ b/home-manager/linux/programs/devel.nix @@ -16,6 +16,12 @@ with lib; with nLib; { unstable.mold ]; }) + # Rust development + (mkIf devel.rust { + home.packages = with pkgs; [ + unstable.cargo-tarpaulin # Code coverage + ]; + }) # JVM Development (mkIf devel.jvm { home.packages = with unstable; [