refactor(email-options): selfprivacy.email.domain -> subdomain

This commit is contained in:
2025-09-16 19:08:15 +03:00
parent 544c9b81b4
commit c615322c4e
2 changed files with 4 additions and 4 deletions

View File

@@ -195,11 +195,11 @@ with lib;
types.submodule (
{ ... }: {
options = {
domain = mkOption {
subdomain = mkOption {
type = with types; strMatching "[A-Za-z0-9][A-Za-z0-9\-]{0,61}[A-Za-z0-9]";
example = "myservice.example.net";
example = "myservice";
default = config.sp.domain;
description = "Domain to send emails from";
description = "Subdomain to send emails from";
};
systemdTargets = mkOption {