From 9c901ca5e034ceebdd3028538f94e0c91bd72d83 Mon Sep 17 00:00:00 2001 From: Collins Muriuki Date: Tue, 15 Oct 2024 14:50:42 +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 88e6a6cd..8c02df54 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 ]; }; }; };