all repos — nixfiles @ 86f8ba751f949a013a29e2a7f49c3d41c078318b

System and user configuration, managed by nix and home-manager

modules/grub2.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:

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