nixos/sysConfig/boot.nix
2023-04-01 15:37:17 -04:00

19 lines
294 B
Nix

{ config, pkgs, lib, ... }:
{
boot = {
loader = {
grub = {
enable = true;
useOSProber = true;
devices = [ "nodev" ];
efiSupport = true;
configurationLimit = 5;
};
efi = {
canTouchEfiVariables = true;
};
};
};
}