From fe165f9d4b9dc9c2ce15e45c173b3185483ba6e2 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Thu, 5 Feb 2026 06:33:36 +0300 Subject: [PATCH] nix: remove rust-overlay override args Signed-off-by: NotAShelf Change-Id: I2b710e73c9094e74c20605c5088483156a6a6964 --- nix/shell.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/nix/shell.nix b/nix/shell.nix index 56237df..819f926 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -2,9 +2,6 @@ lib, pkgs, rust-bin, - # rust-overlay params - extraComponents ? [], - extraTargets ? [], }: let inherit (pkgs.rustc) llvmPackages; @@ -46,12 +43,8 @@ in # This is not exactly necessary, but it allows for compiling for various targets # with the least amount of friction. (rust-bin.nightly.latest.default.override { - extensions = ["rustfmt" "rust-src" "rust-analyzer" "clippy" "rust-analyzer"] ++ extraComponents; - targets = - [ - "wasm32-unknown-unknown" # web - ] - ++ extraTargets; + extensions = ["rustfmt" "rust-src" "rust-analyzer" "clippy" "rust-analyzer"]; + targets = ["wasm32-unknown-unknown"]; # web }) # Handy CLI for packaging Dioxus apps and such