nixos-configs/hosts/mpl/bootloader.nix

13 lines
189 B
Nix
Raw Normal View History

2024-12-27 16:44:03 -06:00
{...}: {
# TODO: lanzaboote
boot.loader = {
efi.canTouchEfiVariables = true;
timeout = 2;
systemd-boot = {
enable = true;
configurationLimit = 3;
};
};
}