nixos/extra/tex.nix

11 lines
154 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
jabref
qtikz
2020-11-16 21:14:46 +01:00
texlive.combined.scheme-full
texstudio
];
}