homelab tinkering 3

This commit is contained in:
2025-07-16 06:59:29 +02:00
parent 5d81391bd8
commit 23e793b784
4 changed files with 43 additions and 5 deletions

View File

@@ -0,0 +1,20 @@
{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 = ''
Base domain name to be used to access the server services via Caddy reverse proxy
'';
};
};
}