Files
nix-config/modules/nixos/base/core.nix
2025-08-19 23:56:19 +08:00

12 lines
371 B
Nix

{ lib, ... }:
{
boot.loader.systemd-boot = {
# we use Git for version control, so we don't need to keep too many generations.
configurationLimit = lib.mkDefault 10;
# pick the highest resolution for systemd-boot's console.
consoleMode = lib.mkDefault "max";
};
boot.loader.timeout = lib.mkDefault 8; # wait for x seconds to select the boot entry
}