nixos-mailserver/default.nix: fix examples
This commit is contained in:
parent
dcd73f59ee
commit
f9d5945032
1 changed files with 2 additions and 2 deletions
|
@ -28,13 +28,13 @@ in
|
||||||
|
|
||||||
fqdn = mkOption {
|
fqdn = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
example = "[ example.com ]";
|
example = "example.com";
|
||||||
description = "The fully qualified domain name of the mail server.";
|
description = "The fully qualified domain name of the mail server.";
|
||||||
};
|
};
|
||||||
|
|
||||||
domains = mkOption {
|
domains = mkOption {
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
example = "[ example.com ]";
|
example = [ "example.com" ];
|
||||||
default = [];
|
default = [];
|
||||||
description = "The domains that this mail server serves.";
|
description = "The domains that this mail server serves.";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue