typst/shell.nix

13 lines
180 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [
pkgs.typst
pkgs.typstyle
pkgs.tinymist
pkgs.tdf
2024-10-30 20:21:54 +00:00
pkgs.agebox
pkgs.mermaid-cli
];
}