nix-config/aspects/common/boot.nix
2026-02-12 18:50:38 -03:00

23 lines
458 B
Nix

{ ... }:
{
flake.modules.nixos.common-boot =
{ pkgs, ... }:
{
boot = {
loader = {
timeout = 1;
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
editor = false;
consoleMode = "max";
sortKey = "aa";
netbootxyz = {
enable = true;
sortKey = "zz";
};
};
};
};
};
}