Development: add markdown module for pandoc

This commit is contained in:
Filippo Berto 2023-03-08 10:51:50 +01:00
parent 62ecc0cdd6
commit 701540aa59
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
3 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{ pkgs, lib, config, ... }: {
home.packages = [
pkgs.pandoc
# pkgs.pandoc-drawio-filter
# pkgs.pandoc-imagine
]
++ lib.optionals config.programs.helix.enable [
pkgs.marksman
];
}