introductionToProgramming/shell.nix
2025-10-26 20:12:22 +01:00

16 lines
210 B
Nix

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