summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/logging/logstash.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/logging/logstash.nix')
-rw-r--r--nixos/modules/services/logging/logstash.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/logging/logstash.nix b/nixos/modules/services/logging/logstash.nix
index bf92425f998b..a4fc315d080d 100644
--- a/nixos/modules/services/logging/logstash.nix
+++ b/nixos/modules/services/logging/logstash.nix
@@ -100,7 +100,7 @@ in
inputConfig = mkOption {
type = types.lines;
- default = ''generator { }'';
+ default = "generator { }";
description = "Logstash input configuration.";
example = ''
# Read from journal
@@ -131,7 +131,7 @@ in
outputConfig = mkOption {
type = types.lines;
- default = ''stdout { codec => rubydebug }'';
+ default = "stdout { codec => rubydebug }";
description = "Logstash output configuration.";
example = ''
redis { host => ["localhost"] data_type => "list" key => "logstash" codec => json }