Skip to content

Commit

Permalink
Fix packages include vs define
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Jun 5, 2024
1 parent 4babb36 commit eeb3823
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions templates/default/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
];
};
};
};
Expand Down

0 comments on commit eeb3823

Please sign in to comment.