include missing deps in nix shell

This commit is contained in:
Oskar Wickström
2025-01-25 14:37:13 +01:00
parent 470566b8b6
commit e4a10cec7b

View File

@@ -23,9 +23,11 @@
in in
{ {
default = pkgs.mkShell { default = pkgs.mkShell {
packages = [ packages = with pkgs; [
pkgs.live-server live-server
pkgs.pandoc pandoc
jq
gnumake
]; ];
}; };
} }