nixos/legacy/modules/tex.nix

10 lines
143 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
biber
2021-08-30 20:24:56 +02:00
qtikz
2020-11-16 21:14:46 +01:00
texlive.combined.scheme-full
texstudio
];
}