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