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