From 06e1c4390ccf2f1ca508d29d988274bd49626398 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Thu, 10 Sep 2026 20:46:13 +0200 Subject: [PATCH] System: Update to new journald settings schema --- system/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/system/default.nix b/system/default.nix index d975998..b5efd82 100644 --- a/system/default.nix +++ b/system/default.nix @@ -394,9 +394,9 @@ with mylib.networking; { }; # Trims the journal if too large - journald.extraConfig = '' - SystemMaxUse=50M - ''; + journald.settings.Journal = { + SystemMaxUse = "50M"; + }; acpid.enable = true; dbus.enable = true;