1
Fork 0
satellite/devshells/typst.nix

8 lines
120 B
Nix
Raw Permalink Normal View History

# Shell for using a pinned version of typst
{ pkgs, ... }:
pkgs.mkShell {
nativeBuildInputs = [
pkgs.typst
];
}