From 5ebffd5e4122920832efa148c3a48fa684e62455 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 71efb6b..9c7a14e 100644 --- a/flake.nix +++ b/flake.nix @@ -58,17 +58,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 - ]; - }; }; }