mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-01-22 15:27:32 -06:00
19 lines
220 B
Nix
19 lines
220 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
let
|
||
|
inherit (lib) mkIfIn;
|
||
|
cfg = config.oizys.languages;
|
||
|
in
|
||
|
{
|
||
|
config = mkIfIn "typst" cfg {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
typst
|
||
|
tinymist
|
||
|
];
|
||
|
};
|
||
|
}
|