dotfiles/nixos/systems/heater/grub.nix

19 lines
294 B
Nix
Raw Normal View History

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