reNixos/kyra/services/journalctl.nix
s0me1newithhand7s ceb94d7cb1 kyra(hardening): journalctl audit settings
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-05-03 19:05:41 +03:00

14 lines
250 B
Nix

_: {
services = {
journald = {
audit = true;
storage = "volatile";
rateLimitBurst = 1000;
rateLimitInterval = "30s";
extraConfig = ''
RuntimeMaxUse=128M
MaxRetentionSec=1day
'';
};
};
}