9 lines
239 B
Nix
9 lines
239 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
boot.loader.systemd-boot.enable = false;
|
|
boot.loader.grub.enable = true;
|
|
boot.loader.grub.efiSupport = true;
|
|
boot.loader.grub.device = "nodev";
|
|
boot.loader.efi.canTouchEfiVariables.default = true;
|
|
}
|