mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
8 lines
190 B
Nix
8 lines
190 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.journald.extraConfig = "SystemMaxUse=250M\nSystemMaxFiles=10";
|
||
|
services.journald.rateLimitBurst = 800;
|
||
|
services.journald.rateLimitInterval = "5s";
|
||
|
}
|