nixos/machines/thinkman/boot.nix
2023-11-07 23:19:48 +01:00

15 lines
244 B
Nix

_:
{
boot = {
loader = {
timeout = 1;
systemd-boot = {
enable = true;
configurationLimit = 10;
consoleMode = "keep";
editor = true;
};
efi.canTouchEfiVariables = true;
};
};
}