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