nix-config/hosts/common/boot.nix
2024-03-15 10:37:32 -03:00

15 lines
252 B
Nix

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