FrameworkNix/system/boot.nix

15 lines
206 B
Nix

{ lib, ... }:
{
boot = {
loader = {
timeout = lib.mkForce 0;
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
editor = false;
};
};
};
}