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
{
default = pkgs.mkShell {
packages = [
pkgs.live-server
pkgs.pandoc
packages = with pkgs; [
live-server
pandoc
jq
gnumake
];
};
}