host/asus: decrease boot.timeout

This commit is contained in:
Dmitriy Pleshevskiy 2024-06-01 03:42:30 +03:00
parent 8e0a030085
commit 2d9136b189
Signed by: pleshevskiy
GPG key ID: 17041163DA10A9A2

View file

@ -1,9 +1,12 @@
{ {
boot.loader.grub = { boot.loader = {
enable = true; timeout = 1;
device = "nodev"; grub = {
efiSupport = true; enable = true;
efiInstallAsRemovable = true; device = "nodev";
enableCryptodisk = true; efiSupport = true;
efiInstallAsRemovable = true;
enableCryptodisk = true;
};
}; };
} }