docs/shell.nix
2024-09-25 20:54:48 -04:00

7 lines
94 B
Nix

{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
mdbook
];
}