nichts/modules/vali/core/boot/boot.nix

12 lines
212 B
Nix

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