nixos/machines/thinkman/boot.nix

16 lines
244 B
Nix
Raw Permalink Normal View History

2023-11-07 23:13:51 +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
};
};
}