dotfiles/nixos/systems/omen/grub.nix

21 lines
343 B
Nix
Raw Normal View History

{ pkgs, lib, ... }:
{
boot.loader = {
systemd-boot.enable = false;
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
mirroredBoots = [
{
devices = [ "nodev" ];
path = "/boot/1";
efiSysMountPoint = "/boot/1/EFI";
}
];
};
};
}