1
Fork 0
satellite/devshells/typst.nix
2023-11-11 06:55:14 +01:00

8 lines
120 B
Nix

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