about summary refs log tree commit diff
path: root/users/grfn/gws.fyi/site.nix
blob: 057c4d3ee69898ca08ed5d263cc433ad826b07c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
args@{ pkgs ? import <nixpkgs> { }, ... }:

let

  orgExportHTML = import ./orgExportHTML.nix args;

in

{
  index = orgExportHTML ./index.org;
  recipes = orgExportHTML ./recipes;
}