Nixos-Configuration/modules/nixos/common/logs.nix
Jermeiah S 83b5be577f
All checks were successful
/ check (push) Successful in 1m15s
/ deploy (push) Successful in 1m30s
enable gelf loggin on all systems [deploy]
2025-06-29 23:28:09 -04:00

12 lines
147 B
Nix

{
lib,
config,
pkgs,
...
}:
{
services.SystemdJournal2Gelf = {
graylogServer = "graylog-tofu.incus:12201";
enable = true;
};
}