15 lines
227 B
Nix
15 lines
227 B
Nix
{ ... }:
|
|
{
|
|
# Use the systemd-boot EFI boot loader.
|
|
boot.loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
consoleMode = "keep";
|
|
};
|
|
timeout = 5;
|
|
efi = {
|
|
canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
}
|
|
|