From 678fa04870b11620ccff300460e51fc6065479fd Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Wed, 23 Apr 2025 23:12:34 -0500 Subject: [PATCH] no debugger for now --- flake.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/flake.nix b/flake.nix index c93bd6a..c7cf3fd 100644 --- a/flake.nix +++ b/flake.nix @@ -20,20 +20,16 @@ devShells.default = with pkgs; mkShell { buildInputs = [ rust-bin.beta.latest.default - # rust-bin.selectLatestNightlyWith (toolchain: toolchain.default) ]; packages = with pkgs; [ rust-bin.beta.latest.clippy rust-bin.beta.latest.rust-analyzer rust-bin.beta.latest.rustfmt - # rust-bin.beta.latest.rustup rust-bin.beta.latest.rust-std - rust-bin.beta.latest.rust-lib-src jetbrains.rust-rover ]; shellHook = '' export SHELL=${pkgs.lib.getExe pkgs.bashInteractive} - export RUST_SRC_PATH=${pkgs.rust-bin.beta.latest.rust-lib-src} ''; }; }