nix-config/hosts/common/boot.nix
2022-11-29 17:36:21 -03:00

15 lines
242 B
Nix

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