098bbb4d67
This is remarkably silly, but it gets the job done Change-Id: Ifbc57988a59c4f51a3bba0ed8ad397cb9855d8ab Reviewed-on: https://cl.tvl.fyi/c/depot/+/423 Reviewed-by: glittershark <grfn@gws.fyi>
11 lines
145 B
Nix
11 lines
145 B
Nix
args@{ pkgs ? import <nixpkgs> {}, ... }:
|
|
|
|
let
|
|
|
|
orgExportHTML = import ./orgExportHTML.nix args;
|
|
|
|
in
|
|
|
|
{
|
|
index = orgExportHTML ./index.org;
|
|
}
|