mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-23 16:49:01 -05:00
15 lines
275 B
Nix
15 lines
275 B
Nix
{ pkgs, ... }: {
|
|
boot = {
|
|
loader = {
|
|
timeout = 0;
|
|
grub = {
|
|
enable = true;
|
|
device = "nodev";
|
|
efiSupport = true;
|
|
useOSProber = true;
|
|
efiInstallAsRemovable = true;
|
|
timeoutStyle = "hidden";
|
|
};
|
|
};
|
|
};
|
|
}
|