introductionToProgramming/shell.nix
Daniel Bulant fc80e98eb4 week14
2025-12-03 14:20:35 +01:00

14 lines
235 B
Nix

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