2022-10-12 01:24:54 +01:00
|
|
|
{lib, ...}: let
|
|
|
|
inherit (lib) mkOption types;
|
|
|
|
in {
|
|
|
|
options.services.nginx.domain = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
2021-05-17 00:00:34 +01:00
|
|
|
description = "The base domain name to append to virtual domain names";
|
|
|
|
};
|
2021-04-12 01:40:19 +01:00
|
|
|
}
|