From 7997f1f91d7a35b2f7421ae0a12dbb12ba3fbc35 Mon Sep 17 00:00:00 2001 From: Collins Muriuki Date: Tue, 15 Oct 2024 14:51:51 +0300 Subject: [PATCH] Optimize default and ci devshell --- flake.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index 55088f539..498caf435 100644 --- a/flake.nix +++ b/flake.nix @@ -101,8 +101,6 @@ }; devShells.default = pkgs.mkShell { - inputsFrom = [ inputs'.holonix.devShells ]; - packages = (with inputs'.holonix.packages; [ holochain lair-keystore @@ -122,10 +120,7 @@ }; devShells.ci = pkgs.mkShell { - inputsFrom = [ self'.devShells.default ]; - packages = [ - self'.packages.hc-scaffold - ]; + packages = [ inputs'.holonix.packages.rust self'.packages.hc-scaffold ]; }; }; };