Use texlive full

This commit is contained in:
Payas Relekar 2021-09-15 08:25:18 +05:30
parent 20074f6cbf
commit 81beb26c9d
2 changed files with 28 additions and 1 deletions

27
flake.lock Normal file
View file

@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1622545032,
"narHash": "sha256-1Y+2LFqnMBEH9OZzMBdLWl6GWFt/xzNz0V5X+m05Ing=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "1c2986bbb806c57f9470bf3231d8da7250ab9091",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View file

@ -9,7 +9,7 @@
devShell."${system}" = # architecture must be specified for devShell
pkgs.mkShell {
name = "resume";
buildInputs = with pkgs; [ texlive.combined.scheme-medium ];
buildInputs = with pkgs; [ texlive.combined.scheme-full ];
};
};
}