about summary refs log tree commit diff
path: root/users/grfn/gws.fyi/site.nix
blob: 33d4a71e7b1fc2e0c859685b34ef6fc214247214 (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;
}