nixos/postfix: Set type for extraConfig to "lines"

Regression introduced by 3891d3e654.

Merging multiple options with type "str" won't work and give an
evaluation error. For extra configuration lines in the Postfix config it
really should be "lines", especially because even the description
mentions "extra lines".

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig
2016-01-15 17:53:42 +01:00
parent e99005382e
commit 7e36514c90

View File

@@ -300,7 +300,7 @@ in
};
extraConfig = mkOption {
type = types.str;
type = types.lines;
default = "";
description = "
Extra lines to be added verbatim to the main.cf configuration file.