nixos-mailserver/default.nix: fix examples

This commit is contained in:
Ruben Maher 2017-11-12 12:29:53 +10:30
parent dcd73f59ee
commit f9d5945032

View File

@ -28,13 +28,13 @@ in
fqdn = mkOption {
type = types.str;
example = "[ example.com ]";
example = "example.com";
description = "The fully qualified domain name of the mail server.";
};
domains = mkOption {
type = types.listOf types.str;
example = "[ example.com ]";
example = [ "example.com" ];
default = [];
description = "The domains that this mail server serves.";
};