nixos-configs/hosts/mpl/bootloader.nix

15 lines
212 B
Nix
Raw Normal View History

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