From a3c1ddda84536ece79810cc75b02da6fe123787b Mon Sep 17 00:00:00 2001 From: Matt McHenry Date: Wed, 25 Jul 2018 20:01:58 -0400 Subject: [PATCH] journald: set rateLimitInterval and rateLimitBurst to upstream defaults --- nixos/modules/system/boot/systemd.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index d2fe33488a7..35ab805dab9 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -548,7 +548,7 @@ in }; services.journald.rateLimitInterval = mkOption { - default = "10s"; + default = "30s"; type = types.str; description = '' Configures the rate limiting interval that is applied to all @@ -561,7 +561,7 @@ in }; services.journald.rateLimitBurst = mkOption { - default = 100; + default = 1000; type = types.int; description = '' Configures the rate limiting burst limit (number of messages per