nixos/postfix: add types (#111426)

Changed files
+2
nixos
modules
services
+2
nixos/modules/services/mail/postfix.nix
···
transport = mkOption {
default = "";
description = "
Entries for the transport map, cf. man-page transport(8).
";
···
dnsBlacklistOverrides = mkOption {
default = "";
description = "contents of check_client_access for overriding dnsBlacklists";
};
···
transport = mkOption {
default = "";
+
type = types.lines;
description = "
Entries for the transport map, cf. man-page transport(8).
";
···
dnsBlacklistOverrides = mkOption {
default = "";
+
type = types.lines;
description = "contents of check_client_access for overriding dnsBlacklists";
};