mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
15 lines
216 B
Nix
15 lines
216 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIfIn;
|
|
cfg = config.oizys.languages;
|
|
in
|
|
{
|
|
config = mkIfIn "tex" cfg {
|
|
environment.systemPackages = with pkgs; [ texlive.combined.scheme-full ];
|
|
};
|
|
}
|