diff --git a/kyra/services/journalctl.nix b/kyra/services/journalctl.nix new file mode 100644 index 0000000..ea895b3 --- /dev/null +++ b/kyra/services/journalctl.nix @@ -0,0 +1,14 @@ +_: { + services = { + journald = { + audit = true; + storage = "volatile"; + rateLimitBurst = 1000; + rateLimitInterval = "30s"; + extraConfig = '' + RuntimeMaxUse=128M + MaxRetentionSec=1day + ''; + }; + }; +}