nix-config/hosts/common/boot.nix
2023-04-06 09:45:01 -03:00

14 lines
216 B
Nix

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