nixos-config/shells/panic.nix
Charlotte Van Petegem 3198e9131e
Add panic shell
2023-09-12 14:05:22 +02:00

10 lines
147 B
Nix

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