depot/hosts/options/hour/enterprise.nix

13 lines
189 B
Nix
Raw Permalink Normal View History

2023-02-24 16:16:15 +02:00
{ lib, ... }:
with lib;
{
options.enterprise = {
subdomain = mkOption {
description = "Host FQDN subdomain.";
type = types.str;
default = "services";
};
};
}