nichts/options/boot/grub-boot.nix

11 lines
165 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";
};
};
}