15 lines
216 B
Nix
15 lines
216 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
boot.loader = {
|
|
timeout = 0;
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot = {
|
|
consoleMode = "auto";
|
|
configurationLimit = lib.mkOverride 1337 10;
|
|
};
|
|
};
|
|
}
|