chore: reduce boot configuration limit to 5

Setting it to 10 does not play well with srvos, since it uses lib.mkDefault
to set it to 10 as well. And anyways, we don't need 10 generations to show
up during the boot menu.

Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
This commit is contained in:
Chinmay D. Pai 2024-09-29 23:26:04 +05:30
parent 5b2cea38f9
commit 965aa6ecaf
Signed by: thunderbottom
GPG Key ID: 75507BE256F40CED

View File

@ -51,8 +51,8 @@
# Use systemd-boot for all systems.
systemd-boot = {
enable = true;
# Show only last 10 configurations in the boot menu.
configurationLimit = lib.mkDefault 10;
# Show only last 5 configurations in the boot menu.
configurationLimit = lib.mkDefault 5;
};
};
};