nix-config/hosts/common/boot.nix
2022-12-16 13:08:23 -03:00

14 lines
208 B
Nix

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