oizys/modules/languages/typst.nix

19 lines
220 B
Nix
Raw Normal View History

2025-01-06 15:14:23 -06:00
{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIfIn;
cfg = config.oizys.languages;
in
{
config = mkIfIn "typst" cfg {
environment.systemPackages = with pkgs; [
typst
tinymist
];
};
}