nichts/modules/system/boot/grub-boot.nix
2024-07-28 11:00:54 +02:00

10 lines
169 B
Nix

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