20 lines
327 B
Nix
20 lines
327 B
Nix
{ ... }:
|
|
|
|
{
|
|
boot = {
|
|
loader = {
|
|
timeout = 1;
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot = {
|
|
enable = true;
|
|
editor = false;
|
|
consoleMode = "max";
|
|
sortKey = "aa";
|
|
netbootxyz = {
|
|
enable = true;
|
|
sortKey = "zz";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|