mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
15 lines
308 B
Nix
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
|
|
'';
|
|
}
|