nixos-config/modules/texlive.nix
Simon Bruder 3e7431e9e9
texlive: Use full version
Many packages that I often use are only part of texlive-full.
2020-08-26 08:53:25 +02:00

8 lines
102 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
texlive.combined.scheme-full
];
}