12 lines
212 B
Nix
12 lines
212 B
Nix
{ lib, ... }:
|
|
{
|
|
boot.loader = {
|
|
timeout = lib.mkDefault 0;
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot = {
|
|
enable = true;
|
|
editor = false;
|
|
configurationLimit = 100;
|
|
};
|
|
};
|
|
}
|