Add texlive (medium)
This commit is contained in:
parent
76895c4378
commit
f98781d03d
|
@ -5,6 +5,7 @@
|
|||
[
|
||||
/etc/nixos/hardware-configuration.nix
|
||||
../../modules/restic.nix
|
||||
../../modules/texlive.nix
|
||||
../../profiles/base.nix
|
||||
../../profiles/dev.nix
|
||||
../../profiles/gui.nix
|
||||
|
|
18
modules/texlive.nix
Normal file
18
modules/texlive.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
# This module installs the medium set of texlive.
|
||||
# If more packages are needed, they should be installed locally by adding
|
||||
# something like the follwing to `shell.nix`
|
||||
#
|
||||
# (texlive.combine { inherit (texlive) scheme-medium wrapfig; })
|
||||
#
|
||||
# TODO: include packages I often use
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
(
|
||||
texlive.combine {
|
||||
inherit (texlive) scheme-medium;
|
||||
}
|
||||
)
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue