nixfiles/nixos/profiles/uefi.nix

13 lines
222 B
Nix

_: {
boot.loader = {
grub = {
devices = ["nodev"];
efiSupport = true;
gfxmodeEfi = "1920x1080";
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
};
}