15163fdc16
Someone asked for this, so here it is. Change-Id: I00c52deb8c3f4e8f786cf4763b39d862ad041f6d Reviewed-on: https://cl.tvl.fyi/c/depot/+/3371 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
12 lines
182 B
Nix
12 lines
182 B
Nix
args@{ pkgs ? import <nixpkgs> {}, ... }:
|
|
|
|
let
|
|
|
|
orgExportHTML = import ./orgExportHTML.nix args;
|
|
|
|
in
|
|
|
|
{
|
|
index = orgExportHTML ./index.org;
|
|
recipes = orgExportHTML ./recipes;
|
|
}
|