From d1a96e136261437640db078bb1db42bb1aa84974 Mon Sep 17 00:00:00 2001 From: andrew Date: Tue, 28 Apr 2026 11:07:11 -0400 Subject: [PATCH] chore: cleanup nix dev stuff --- rust-toolchain.toml | 3 +++ shell.nix | 10 ---------- 2 files changed, 3 insertions(+), 10 deletions(-) create mode 100644 rust-toolchain.toml delete mode 100644 shell.nix diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..9cab269 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,3 @@ +[toolchain] +channel = "stable" + diff --git a/shell.nix b/shell.nix deleted file mode 100644 index afd09a7..0000000 --- a/shell.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ pkgs ? import {} }: - -pkgs.mkShell { - buildInputs = with pkgs; [ - cargo - rustc - rust-analyzer - ]; -} -