nix-config/hosts/common/boot.nix
2024-04-01 22:58:07 -03:00

15 lines
245 B
Nix

{ inputs, config, pkgs, lib, ... }:
{
boot = {
loader = {
timeout = 2;
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
editor = false;
consoleMode = "max";
};
};
};
}