html.nix/examples/site.nix
2021-05-16 22:47:53 +03:00

10 lines
164 B
Nix

{ pkgs, lib }:
let
inherit (pkgs) htmlNix;
src = ./site;
in
htmlNix.mkServeFromSite (htmlNix.mkSiteFrom {
inherit src;
templater = lib.templaters.basic;
})