feat(nix/hm/price): install pandoc

This commit is contained in:
Price Hiller 2024-06-05 11:43:40 -05:00
parent a4220dbc98
commit 069066266e
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ texliveTeTeX ];
programs.pandoc = {
enable = true;
};
}