13 lines
218 B
Nix
13 lines
218 B
Nix
{
|
|
boot.loader = {
|
|
systemd-boot.enable = false;
|
|
grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
useOSProber = true;
|
|
devices = [ "nodev" ];
|
|
};
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
}
|