mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-23 17:28:33 +02:00
9 lines
209 B
Nix
9 lines
209 B
Nix
{
|
|
# systemd-journal - reduce disk usage
|
|
# https://www.freedesktop.org/software/systemd/man/latest/journald.conf.html
|
|
services.journald.extraConfig = ''
|
|
SystemMaxUse=2G
|
|
RuntimeMaxUse=256M
|
|
'';
|
|
}
|