tlaternet-server/modules/default.nix

9 lines
211 B
Nix
Raw Normal View History

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