From 0ac8ea64b8c9f41a9cb55711d05eb6b6bc52382d Mon Sep 17 00:00:00 2001 From: Joshua Yuen Date: Sun, 21 Jun 2026 12:54:18 -0400 Subject: [PATCH] Limit systemd-boot to only show the most recent 10 generations --- modules/core/boot.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/core/boot.nix b/modules/core/boot.nix index a3ec43b..c28f3c4 100644 --- a/modules/core/boot.nix +++ b/modules/core/boot.nix @@ -6,6 +6,7 @@ boot = { loader.systemd-boot = { enable = true; + configurationLimit = 10; consoleMode = config.system.systemdBootConsoleMode; }; loader.efi.canTouchEfiVariables = true;