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; + }; }; }