html.nix/examples/site.nix
2022-07-30 12:42:09 +03:00

13 lines
195 B
Nix

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