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 + ]; +}