10 lines
128 B
Nix
10 lines
128 B
Nix
|
args@{ pkgs, depot, ... }:
|
||
|
|
||
|
let
|
||
|
orgExportHTML = import ./orgExportHTML.nix args;
|
||
|
in
|
||
|
|
||
|
{
|
||
|
index = orgExportHTML ./index.org;
|
||
|
}
|