From 05e8560841531eff9fa3dbd66218897ba91247e9 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 da09d7b..cbf93bf 100644 --- a/flake.nix +++ b/flake.nix @@ -63,17 +63,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 - ]; - }; }; }