nixos/machines/thinkman/boot.nix

16 lines
250 B
Nix
Raw Normal View History

2023-11-07 22:00:00 +01:00
{ ... }:
2020-11-16 21:14:46 +01:00
{
boot = {
loader = {
timeout = 1;
systemd-boot = {
enable = true;
configurationLimit = 10;
consoleMode = "keep";
editor = true;
};
2022-06-03 17:59:24 +02:00
efi.canTouchEfiVariables = true;
2020-11-16 21:14:46 +01:00
};
};
}