2024-07-04 19:12:52 +03:00
|
|
|
{ lib, depot, ... }:
|
2024-07-04 02:57:36 +03:00
|
|
|
|
|
|
|
{
|
|
|
|
options.ways = lib.mkOption {
|
2024-07-04 19:12:52 +03:00
|
|
|
type = lib.types.attrsOf (lib.types.submodule {
|
|
|
|
imports = [ ./way.nix ];
|
|
|
|
domainSuffixExternal = depot.lib.meta.domain;
|
|
|
|
domainSuffixInternal = "internal.${depot.lib.meta.domain}";
|
|
|
|
});
|
2024-07-04 02:57:36 +03:00
|
|
|
default = {};
|
|
|
|
};
|
|
|
|
}
|