mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
19 lines
294 B
Nix
19 lines
294 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
boot = {
|
|
loader = {
|
|
grub = {
|
|
enable = true;
|
|
useOSProber = true;
|
|
devices = [ "nodev" ];
|
|
efiSupport = true;
|
|
configurationLimit = 5;
|
|
};
|
|
|
|
efi = {
|
|
canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
};
|
|
}
|