Fix error in journald config
Some checks failed
Run nix flake check / flake-check (push) Failing after 4m0s

This commit is contained in:
Torjus Håkestad 2025-02-07 13:22:50 +01:00
parent f29edfe34a
commit 4d2fbff6d0
Signed by: torjus
SSH Key Fingerprint: SHA256:KjAds8wHfD2mBYK2H815s/+ABcSdcIHUndwHEdSxml4

View File

@ -3,10 +3,10 @@
# Configure journald
services.journald = {
rateLimitInterval = "10s";
extraConfig = [
"SystemMaxUse=100M"
"SystemKeepFree=1G"
];
extraConfig = ''
SystemMaxUse=100M
SystemKeepFree=1G
'';
};
# Configure promtail
services.promtail = {