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

6 lines
177 B
Nix
Raw Normal View History

2019-12-20 05:54:26 +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";
}