typst/shell.nix

9 lines
127 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [
pkgs.typst
pkgs.typstyle
pkgs.tinymist
];
}