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