summary refs log tree commit diff stats
path: root/system/settings/hardware/grub2.nix
blob: cd1fd61989bba1427075c004737e9d2c0d880779 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, pkgs, lib, ... }:

{ boot.loader = {
    grub = {
      enable = true;
      splashImage = null;
      version = 2;
      device = "nodev";
      efiSupport = true;
      useOSProber = lib.mkDefault true;
    };
    efi.canTouchEfiVariables = true;
  };
}