nichts/options/boot/grub-boot.nix

11 lines
157 B
Nix
Raw Normal View History

_: {
2024-04-10 14:21:41 +02:00
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
};
2024-04-10 14:21:41 +02:00
}