feat: systemd-boot.configurationLimit = 10

This commit is contained in:
2025-12-05 19:06:30 +08:00
parent e3b5a1d6c3
commit 837f865b4f
3 changed files with 12 additions and 3 deletions

View File

@@ -8,7 +8,10 @@
{ {
boot.loader = { boot.loader = {
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
systemd-boot.enable = true; systemd-boot = {
enable = true;
configurationLimit = 10;
};
grub.enable = false; grub.enable = false;
timeout = 0; timeout = 0;
}; };

View File

@@ -21,7 +21,10 @@
boot.loader = { boot.loader = {
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
systemd-boot.enable = true; systemd-boot = {
enable = true;
configurationLimit = 10;
};
grub.enable = false; grub.enable = false;
timeout = 0; timeout = 0;
}; };

View File

@@ -46,7 +46,10 @@ in
boot.loader = { boot.loader = {
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
systemd-boot.enable = true; systemd-boot = {
enable = true;
configurationLimit = 10;
};
grub.enable = false; grub.enable = false;
timeout = 0; timeout = 0;
}; };