From eeb38239e155d8b9391450e549f8096929c7b51e Mon Sep 17 00:00:00 2001 From: ThetaSinner Date: Wed, 5 Jun 2024 17:55:11 +0100 Subject: [PATCH] Fix packages include vs define --- templates/default/flake.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/templates/default/flake.nix b/templates/default/flake.nix index 94e37e9..3d706ab 100644 --- a/templates/default/flake.nix +++ b/templates/default/flake.nix @@ -19,14 +19,14 @@ { formatter = pkgs.nixpkgs-fmt; - packages = with pkgs; [ - nodejs_20 # For UI development - binaryen # For WASM optimisation - # Add any other packages you need here - ]; - devShells.default = pkgs.mkShell { inputsFrom = [ inputs'.holonix.devShells ]; + + packages = with pkgs; [ + nodejs_20 # For UI development + binaryen # For WASM optimisation + # Add any other packages you need here + ]; }; }; };