summaryrefslogtreecommitdiffstats
path: root/krebs/3modules/sitemap.nix
blob: 906d556be1b9b038bf8813c2118ae51c3c6e6488 (plain)
1
2
3
4
5
6
7
{ lib, ... }:
{
  options.krebs.sitemap = lib.mkOption {
    type = with lib.types; attrsOf sitemap.entry;
    default = {};
  };
}