From aeadf50d88866b669a020cbb429288b2b2230ffc Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Tue, 5 Dec 2023 09:24:07 +0100 Subject: [PATCH] Add CV shell --- shells/curriculum-vitae.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 shells/curriculum-vitae.nix diff --git a/shells/curriculum-vitae.nix b/shells/curriculum-vitae.nix new file mode 100644 index 00000000..b308ef86 --- /dev/null +++ b/shells/curriculum-vitae.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: + +pkgs.devshell.mkShell { + name = "Curriculum vitae"; + packages = with pkgs; [ + texlive.combined.scheme-full + ]; +}