Preliminary multi-domain support
This commit is contained in:
parent
3d2f41dedc
commit
ebd0f656ed
6 changed files with 51 additions and 27 deletions
10
default.nix
10
default.nix
|
@ -28,8 +28,14 @@ in
|
|||
|
||||
domain = mkOption {
|
||||
type = types.str;
|
||||
example = "example.com";
|
||||
description = "The domain that this mail server serves. So far only one domain is supported";
|
||||
example = "[ example.com ]";
|
||||
description = "The primary domain that this mail server serves.";
|
||||
};
|
||||
|
||||
extraDomains = mkOption {
|
||||
type = types.listOf types.str;
|
||||
example = "[ example.com ]";
|
||||
description = "Extra domains that this mail server serves.";
|
||||
};
|
||||
|
||||
hostPrefix = mkOption {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue