1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-02-24 16:02:02 +00:00
2024-07-02 13:42:50 +00:00

15 lines
308 B
Nix

{ ... }:
{
# How long to keep journalctl entries
# This helps to make sure log disk usage doesn't grow too unwieldy
services.journald.extraConfig = ''
SystemMaxUse=4G
SystemKeepFree=10G
SystemMaxFileSize=128M
SystemMaxFiles=500
MaxFileSec=1month
MaxRetentionSec=2month
'';
}