dotfiles/nixos/systems/heater/grub.nix
magic_rb 6f18aa5f55
Fixup heater, prepare for compute rig
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-03-30 14:52:58 +01:00

19 lines
294 B
Nix

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