nix-config/hosts/common/boot.nix
2024-03-15 17:53:38 -03:00

16 lines
281 B
Nix

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