lol

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

Regression introduced by 3891d3e6541fe588ee2430e7b1bdb8d87d787a53.

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>

aszlig 7e36514c e9900538

+1 -1
+1 -1
nixos/modules/services/mail/postfix.nix
··· 300 300 }; 301 301 302 302 extraConfig = mkOption { 303 - type = types.str; 303 + type = types.lines; 304 304 default = ""; 305 305 description = " 306 306 Extra lines to be added verbatim to the main.cf configuration file.