mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-18 19:23:39 -05:00
14 lines
223 B
Nix
14 lines
223 B
Nix
|
{ pkgs, ... }: {
|
||
|
boot = {
|
||
|
loader = {
|
||
|
grub = {
|
||
|
enable = true;
|
||
|
device = "nodev";
|
||
|
efiSupport = true;
|
||
|
useOSProber = true;
|
||
|
efiInstallAsRemovable = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|