dotfiles/nix/nixos/modules/efi-grub.nix
2021-02-28 18:14:01 +01:00

17 lines
340 B
Nix

{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib }:
{ config, ... }:
{
boot.loader = {
systemd-boot.enable = false;
efi.canTouchEfiVariables = true;
efi.efiSysMountPoint = "/boot/EFI";
grub = {
enable = true;
efiSupport = true;
version = 2;
devices = [ "nodev" ];
};
};
}