Nixos-Configuration/modules/nixos/common/logs.nix
Jermeiah S 6c7781e325
All checks were successful
/ check (push) Successful in 1m28s
/ deploy (push) Has been skipped
logs now stored in mem since using gray log
2025-07-06 02:40:16 -04:00

15 lines
225 B
Nix

{
lib,
config,
pkgs,
...
}:
{
services.SystemdJournal2Gelf = {
graylogServer = "graylog-tofu.incus:12201";
enable = true;
};
services.journald = {
storage = "volatile"; # Store logs in memory
};
}