From 3198e9131ef1f6d48cb81f93db5cbf2fe09fbc15 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Tue, 12 Sep 2023 14:05:15 +0200 Subject: [PATCH] Add panic shell --- shells/panic.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 shells/panic.nix diff --git a/shells/panic.nix b/shells/panic.nix new file mode 100644 index 00000000..b44cbd97 --- /dev/null +++ b/shells/panic.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: + +pkgs.devshell.mkShell { + name = "Panic"; + packages = with pkgs; [ + python3 + pandoc + texlive.combined.scheme-full + ]; +}