Skip to content

Instantly share code, notes, and snippets.

@justinwoo
Created October 16, 2018 10:03
Show Gist options
  • Save justinwoo/6a714cfce68bc1fbe42ea4bface321ae to your computer and use it in GitHub Desktop.
Save justinwoo/6a714cfce68bc1fbe42ea4bface321ae to your computer and use it in GitHub Desktop.
using noto sans in slides for beamer with pandoc in nix
let
pkgs = import <nixpkgs> {};
texlive = pkgs.texlive.combine {
inherit (pkgs.texlive)
scheme-small
collection-fontutils
collection-fontsrecommended
collection-fontsextra
fontaxes
beamer;
};
in {
slides = pkgs.stdenv.mkDerivation {
name = "slides";
src = ./.;
buildInputs = [
texlive
pkgs.pandoc
pkgs.watchexec
];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment