introductionToProgramming/shell.nix
Daniel Bulant 0f3bfa38b8
week7
2025-10-19 22:24:21 +02:00

15 lines
198 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell rec {
buildInputs = with pkgs; [
jdk
typst
tinymist
];
nativeBuildInputs = with pkgs; [
jre
];
TYPST_FEATURES = "html";
}