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