From e96076f25d21e50422e58e6c7cf3e14b37e5cfc0 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Tue, 16 Jan 2024 12:29:40 +0100 Subject: [PATCH] Limit boot entries to 5 in wheatley (revert this if the build fails!) --- nixos/hosts/wheatley/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/hosts/wheatley/configuration.nix b/nixos/hosts/wheatley/configuration.nix index 0cda305..047f261 100644 --- a/nixos/hosts/wheatley/configuration.nix +++ b/nixos/hosts/wheatley/configuration.nix @@ -18,6 +18,7 @@ ]; boot.loader.generic-extlinux-compatible.enable = true; + boot.loader.generic-extlinux-compatible.configurationLimit = 5; boot.loader.grub.enable = false; boot.tmp.cleanOnBoot = true;