mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-08 21:43:03 -04:00
19 lines
333 B
Nix
19 lines
333 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot = {
|
|
loader = {
|
|
timeout = 0;
|
|
grub = {
|
|
enable = true;
|
|
device = "nodev";
|
|
efiSupport = true;
|
|
useOSProber = true;
|
|
efiInstallAsRemovable = true;
|
|
timeoutStyle = "hidden";
|
|
memtest86 = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|