nixos/machines/thinkman/boot.nix
2024-07-28 21:08:02 +02:00

14 lines
244 B
Nix

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