Add panic shell

This commit is contained in:
Charlotte Van Petegem 2023-09-12 14:05:15 +02:00
parent 7bbc83eddb
commit 3198e9131e
No known key found for this signature in database
GPG key ID: 019E764B7184435A

10
shells/panic.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
pkgs.devshell.mkShell {
name = "Panic";
packages = with pkgs; [
python3
pandoc
texlive.combined.scheme-full
];
}