mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 01:42:55 +00:00
12 lines
238 B
Nix
12 lines
238 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
|
|
'';
|
|
|
|
}
|