dotfiles/nixos/systems/omen/grub.nix
Magic_RB 36120abf6b
Update filesystems for omen
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2023-09-02 16:43:30 +02:00

21 lines
343 B
Nix

{ 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";
}
];
};
};
}