nichts/options/boot/grub-boot.nix
2024-04-10 14:21:41 +02:00

10 lines
165 B
Nix

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