Evie Litherland-Smith
92ca3261d9
Kept finding packages I was missing... Add engrave-faces package for Emacs to fontify src blocks when exporting
10 lines
210 B
Nix
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 { }) ];
|
|
})
|
|
];
|
|
}
|