html.nix/examples/site.nix
2021-05-17 00:08:42 +03:00

11 lines
180 B
Nix

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