cfg/mod/boot.nix
2025-03-22 12:28:50 +01:00

11 lines
163 B
Nix

{ ... }:
{
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
};
}