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:
parent
e99005382e
commit
7e36514c90
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue