System/devshells/markdown.nix
2025-02-07 03:54:41 -05:00

26 lines
403 B
Nix

{
withSystem,
inputs,
...
}: {
perSystem = {
config,
pkgs,
lib,
inputs',
...
}: {
devShells.markdown = pkgs.mkShell {
buildInputs = with pkgs; [
(python3.withPackages (ps:
with ps; [
mdformat
mdformat-gfm
mdformat-tables
mdformat-footnote
pygments
]))
];
};
};
}