System/devshells/markdown.nix

26 lines
382 B
Nix
Raw Normal View History

2025-01-13 19:56:21 +00:00
{
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
]))
];
};
};
}