nixos/modules/boot/basic.nix
2023-06-13 21:23:33 +08:00

18 lines
267 B
Nix

{ efi, timeout ? 5 }: { pkgs, ... }@inputs:
{
config =
{
boot =
{
loader =
{
timeout = timeout;
systemd-boot.enable = true;
efi.canTouchEfiVariables = efi;
};
initrd.systemd.enable = true;
};
hardware.enableAllFirmware = true;
};
}