From 56cd152a04d67174c26467a78631f66a3948e829 Mon Sep 17 00:00:00 2001 From: Sweetbread Date: Sat, 29 Nov 2025 16:16:57 +0300 Subject: [PATCH] flake: remove devshell --- flake.nix | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/flake.nix b/flake.nix index 1ab0d6f..0d0caa9 100644 --- a/flake.nix +++ b/flake.nix @@ -61,17 +61,5 @@ Eclipse = mkHost "Eclipse"; Impreza = mkHost "Impreza"; }; - - devShells."${system}".default = let - pkgs = import nixpkgs { inherit system; }; - in pkgs.mkShell { - shellHook = "zsh"; - packages = with pkgs; [ - cargo - rustc - rust-analyzer - lldb - ]; - }; }; }