From 8bcd7f71b47e8d3df23d174307ae66047fa88fc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Thu, 22 May 2025 23:27:26 +0200 Subject: [PATCH] Revert "environments/rust: init" This reverts commit 6af093062ad5f225439d29f6a6c3944eadeb088f. --- nix/environments/rust.nix | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 nix/environments/rust.nix diff --git a/nix/environments/rust.nix b/nix/environments/rust.nix deleted file mode 100644 index 45afe645..00000000 --- a/nix/environments/rust.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ - buildEnv, - # - pkgs, -}: -buildEnv { - name = "rust"; - paths = with pkgs; [ - gcc - - cargo - rustc - rustfmt - rust-analyzer - ]; -}