From 870067ce90923c507df054dcfa8abd99a41484a4 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Tue, 14 Mar 2023 14:12:21 +0100 Subject: [PATCH] Limit amount of boot enterys --- modules/system/boot/uefi/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/boot/uefi/default.nix b/modules/system/boot/uefi/default.nix index bffdb13..f0fc895 100644 --- a/modules/system/boot/uefi/default.nix +++ b/modules/system/boot/uefi/default.nix @@ -14,7 +14,7 @@ in boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.efiSysMountPoint = "/boot/efi"; - #boot.loader.systemd-boot.configurationLimit = 10; + boot.loader.systemd-boot.configurationLimit = 10; # https://github.com/NixOS/nixpkgs/blob/c32c39d6f3b1fe6514598fa40ad2cf9ce22c3fb7/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix#L66 boot.loader.systemd-boot.editor = false;