c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
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;
|
|
}
|