10 lines
293 B
Nix
Executable file
10 lines
293 B
Nix
Executable file
{pkgs, ... }:
|
|
{
|
|
boot.loader.grub.enable = true;
|
|
boot.loader.grub.version = 2;
|
|
boot.loader.grub.efiSupport = true;
|
|
boot.loader.grub.efiInstallAsRemovable = true;
|
|
boot.loader.grub.useOSProber = true;
|
|
boot.loader.efi.efiSysMountPoint = "/boot";
|
|
boot.loader.grub.device = "nodev";
|
|
}
|