mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:59:41 +00:00
10 lines
214 B
Nix
10 lines
214 B
Nix
{
|
|
# Limit systemd journal size, as the default is unlimited and
|
|
# journals get big really fast
|
|
services.journald.extraConfig = ''
|
|
SystemMaxUse=100M
|
|
RuntimeMaxUse=50M
|
|
SystemMaxFileSize=50M
|
|
'';
|
|
}
|