nixos/machines/thinkman/boot.nix

15 lines
244 B
Nix
Raw Normal View History

2024-07-28 21:08:02 +02: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
};
};
}