nixos-configs/hosts/mpl/bootloader.nix

20 lines
293 B
Nix
Raw Normal View History

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