System/devshells/markdown.nix

28 lines
435 B
Nix
Raw Normal View History

2025-01-13 14:56:21 -05:00
{
withSystem,
inputs,
...
}: {
perSystem = {
config,
pkgs,
lib,
inputs',
...
}: {
devShells.markdown = pkgs.mkShell {
buildInputs = with pkgs; [
(python3.withPackages (ps:
with ps; [
mdformat
mdformat-gfm
2025-02-09 07:43:34 -05:00
mdformat-gfm-alerts
2025-01-13 14:56:21 -05:00
mdformat-tables
mdformat-footnote
2025-02-07 03:54:41 -05:00
pygments
2025-01-13 14:56:21 -05:00
]))
];
};
};
}