From 81beb26c9d8bfd7f70ac69b2bc3c826d991a0386 Mon Sep 17 00:00:00 2001 From: Payas Relekar Date: Wed, 15 Sep 2021 08:25:18 +0530 Subject: [PATCH] Use texlive full --- flake.lock | 27 +++++++++++++++++++++++++++ flake.nix | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 flake.lock diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..42274cc --- /dev/null +++ b/flake.lock @@ -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 +} diff --git a/flake.nix b/flake.nix index 29b64f0..4952a84 100644 --- a/flake.nix +++ b/flake.nix @@ -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 ]; }; }; }