nixos/graylog: use types.lines for extraConfig

The `types.lines` type makes it possible to define `extraConfig` in
multiple files and simply concat the contents.
This commit is contained in:
Maximilian Bosch 2019-07-06 20:01:43 +02:00 committed by Matthieu Coudron
parent e6e58a2122
commit beff2f8d75

View File

@ -108,7 +108,7 @@ in
}; };
extraConfig = mkOption { extraConfig = mkOption {
type = types.str; type = types.lines;
default = ""; default = "";
description = "Any other configuration options you might want to add"; description = "Any other configuration options you might want to add";
}; };