nixos/system/home/texlive/default.nix
Evie Litherland-Smith 92ca3261d9 Switch to using texlive full scheme
Kept finding packages I was missing...

Add engrave-faces package for Emacs to fontify src blocks when
exporting
2025-01-08 17:24:58 +00:00

10 lines
210 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
(texlive.combine {
inherit (texlive) scheme-full;
latex-beamer-ukaea.pkgs = [ (callPackage ./latex-beamer-ukaea/default.nix { }) ];
})
];
}