13 lines
212 B
Nix
13 lines
212 B
Nix
|
{ inputs, outputs, profile-config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
boot.loader = {
|
||
|
efi.canTouchEfiVariables = true;
|
||
|
grub = {
|
||
|
enable = true;
|
||
|
efiSupport = true;
|
||
|
device = "nodev";
|
||
|
};
|
||
|
};
|
||
|
}
|