Skip to content

Instantly share code, notes, and snippets.

@steshaw
Created October 5, 2020 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steshaw/5ee72fd409e9cdc87deafb3e59096410 to your computer and use it in GitHub Desktop.
Save steshaw/5ee72fd409e9cdc87deafb3e59096410 to your computer and use it in GitHub Desktop.
let sources = import ./sources.nix;
in
{ pkgs ? import sources.nixpkgs { }
}:
/*
with
{ overlay = _: pkgs:
{ niv = import sources.niv {};
};
};
*/
with pkgs;
mkShell {
buildInputs = [
gnumake
niv
(texlive.combine {
inherit (texlive)
scheme-medium
changepage
fontawesome
fontaxes
lastpage
libertine
moderncv
mweights
preprint
raleway
roboto
titlesec
;
})
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment