mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
12 lines
237 B
Nix
12 lines
237 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=100M
|
|
MaxFileSec=1month
|
|
MaxRetentionSec=2month
|
|
'';
|
|
}
|