FrameworkNix/system/boot.nix

15 lines
206 B
Nix
Raw Normal View History

{ lib, ... }:
2024-03-11 17:31:39 +00:00
{
boot = {
loader = {
timeout = lib.mkForce 0;
2024-03-11 17:31:39 +00:00
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
editor = false;
};
};
};
}