nixos-config/modules/texlive.nix

8 lines
102 B
Nix
Raw Normal View History

2020-08-26 01:08:08 +02:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
texlive.combined.scheme-full
2020-08-26 01:08:08 +02:00
];
}