dotfiles/nixos/systems/omen/grub.nix
magic_rb aff0158ef7
Reformat the whole flake using alejandra
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-03-02 22:17:03 +01:00

24 lines
347 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";
}
];
};
};
}