15 lines
206 B
Nix
15 lines
206 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
boot = {
|
|
loader = {
|
|
timeout = lib.mkForce 1;
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot = {
|
|
enable = true;
|
|
editor = false;
|
|
};
|
|
};
|
|
};
|
|
}
|