mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-22 22:45:37 +00:00
grub boot timeout
This commit is contained in:
parent
b48c9aef12
commit
884f0cdeea
@ -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;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user