nix-config/hosts/common/boot.nix
2022-12-16 13:14:26 -03:00

18 lines
314 B
Nix

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