From 2d9136b18923cead77ffe01834c4e5ddb1808726 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Sat, 1 Jun 2024 03:42:30 +0300 Subject: [PATCH] host/asus: decrease boot.timeout --- hosts/asus-gl553vd/configs/boot.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/hosts/asus-gl553vd/configs/boot.nix b/hosts/asus-gl553vd/configs/boot.nix index 51a54a0..5b323c2 100644 --- a/hosts/asus-gl553vd/configs/boot.nix +++ b/hosts/asus-gl553vd/configs/boot.nix @@ -1,9 +1,12 @@ { - boot.loader.grub = { - enable = true; - device = "nodev"; - efiSupport = true; - efiInstallAsRemovable = true; - enableCryptodisk = true; + boot.loader = { + timeout = 1; + grub = { + enable = true; + device = "nodev"; + efiSupport = true; + efiInstallAsRemovable = true; + enableCryptodisk = true; + }; }; }