nixos-configs/hosts/mpl/bootloader.nix

20 lines
293 B
Nix

{...}: {
# TODO: lanzaboote
boot = {
initrd.systemd = {
enable = true;
enableTpm2 = true;
};
loader = {
efi.canTouchEfiVariables = true;
timeout = 2;
systemd-boot = {
enable = true;
configurationLimit = 3;
};
};
};
}