12 lines
187 B
Nix
12 lines
187 B
Nix
{ ... }: {
|
|
boot.loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
editor = false;
|
|
consoleMode = "2";
|
|
};
|
|
|
|
efi.canTouchEfiVariables = true;
|
|
timeout = 3;
|
|
};
|
|
}
|