Files
cnix/modules/server/default.nix
2025-07-18 01:14:51 +02:00

21 lines
465 B
Nix

{lib, ...}: let
inherit (lib) mkOption types;
in {
options.server = {
email = mkOption {
default = "";
type = types.str;
description = ''
Email name to be used to access the server services via Caddy reverse proxy
'';
};
domain = mkOption {
default = "";
type = types.str;
description = ''
Domain name to be used to access the server services via Caddy reverse proxy
'';
};
};
}