dotfiles/common/systemModules/boot.nix
2025-02-08 18:25:57 -05:00

15 lines
275 B
Nix

{ pkgs, ... }: {
boot = {
loader = {
timeout = 0;
grub = {
enable = true;
device = "nodev";
efiSupport = true;
useOSProber = true;
efiInstallAsRemovable = true;
timeoutStyle = "hidden";
};
};
};
}