diff --git a/flake.nix b/flake.nix index 3e2780d..b0cfec1 100644 --- a/flake.nix +++ b/flake.nix @@ -20,22 +20,10 @@ default = pkgs.stdenvNoCC.mkDerivation rec { name = "resume-latex"; src = self; - buildInputs = with pkgs;[ + buildInputs = with pkgs; [ pkgs.coreutils pkgs.findutils - (texlive.combine { - inherit - (texlive) - scheme-small - academicons - arydshln - fontawesome5 - marvosym - moderncv - multirow - latexmk - ; - }) + pkgs.texlive.combined.scheme-full ]; buildPhase = '' export PATH="${pkgs.lib.makeBinPath buildInputs}" @@ -67,19 +55,7 @@ devShells = eachSystem (pkgs: { default = pkgs.mkShell { buildInputs = with pkgs; [ - (texlive.combine { - inherit - (texlive) - scheme-small - academicons - arydshln - fontawesome5 - marvosym - moderncv - multirow - latexmk - ; - }) + pkgs.texlive.combined.scheme-full pkgs.texlab pkgs.termpdfpy ];