dotfiles/common/systemModules/boot.nix

16 lines
275 B
Nix
Raw Normal View History

2024-10-02 17:19:34 -04:00
{ pkgs, ... }: {
boot = {
loader = {
2025-02-08 18:25:57 -05:00
timeout = 0;
2024-10-02 17:19:34 -04:00
grub = {
enable = true;
device = "nodev";
efiSupport = true;
useOSProber = true;
efiInstallAsRemovable = true;
2025-02-08 18:25:57 -05:00
timeoutStyle = "hidden";
2024-10-02 17:19:34 -04:00
};
};
};
}