nixos-configs/apps/gen-docs/default.nix
matt1432 a4c953df3b
All checks were successful
Discord / discord commits (push) Has been skipped
docs: add script to generate some docs from nix attrs
2025-01-20 11:06:01 -05:00

10 lines
161 B
Nix

{
writeShellApplication,
pandoc,
...
}:
writeShellApplication {
name = "gen-docs";
runtimeInputs = [pandoc];
text = builtins.readFile ./script.sh;
}