nixos-config/system/server/graylog-exporter.nix

7 lines
177 B
Nix
Raw Normal View History

2019-12-14 06:15:37 +01:00
{ lib, ... }:
2019-10-24 02:20:38 +02:00
{
# send data to graylog
2019-12-14 06:15:37 +01:00
services.SystemdJournal2Gelf.enable = lib.mkDefault true;
2019-10-24 02:20:38 +02:00
services.SystemdJournal2Gelf.graylogServer = "workhorse.private:11201";
}