main
nix 21 lines 390 Bytes
Raw
1 {
2 boot.loader = {
3 efi.canTouchEfiVariables = false;
4 grub = {
5 enable = true;
6 configurationLimit = 5;
7 efiSupport = true;
8 efiInstallAsRemovable = true;
9 mirroredBoots = [
10 {
11 devices = [ "nodev" ];
12 path = "/efi/a";
13 }
14 {
15 devices = [ "nodev" ];
16 path = "/efi/b";
17 }
18 ];
19 };
20 };
21 }