mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 07:24:10 +01:00
12 lines
371 B
Nix
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
|
|
}
|