NixOS AMI: Give grub a 1s timeout now that AWS has emergency console access.
See: * https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/enhanced-networking-os.html * https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/grub.html
This commit is contained in:
parent
0ccd6448d6
commit
bfd2f800ee
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ in
|
|||
boot.loader.grub.extraPerEntryConfig = mkIf (!cfg.hvm) "root (hd0)";
|
||||
boot.loader.grub.efiSupport = cfg.efi;
|
||||
boot.loader.grub.efiInstallAsRemovable = cfg.efi;
|
||||
boot.loader.timeout = 0;
|
||||
boot.loader.timeout = 1;
|
||||
|
||||
boot.initrd.network.enable = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue