mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-25 15:40:14 +00:00
grub boot timeout
This commit is contained in:
@ -15,8 +15,20 @@
|
|||||||
|
|
||||||
# Don't install GRUB, required for UEFI?
|
# Don't install GRUB, required for UEFI?
|
||||||
device = "nodev";
|
device = "nodev";
|
||||||
|
|
||||||
|
# Display menu indefinitely if holding shift key
|
||||||
|
extraConfig = ''
|
||||||
|
if keystatus --shift ; then
|
||||||
|
set timeout=-1
|
||||||
|
else
|
||||||
|
set timeout=0
|
||||||
|
fi
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Always display menu indefinitely; default is 5 seconds
|
||||||
|
# timeout = null;
|
||||||
|
|
||||||
# Allows GRUB to interact with the UEFI/BIOS I guess
|
# Allows GRUB to interact with the UEFI/BIOS I guess
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user