nixos/machines/thinkman/boot.nix
2023-11-07 22:49:32 +01:00

15 lines
250 B
Nix

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