12 lines
223 B
Nix
12 lines
223 B
Nix
|
{ pkgs, ... }: {
|
||
|
boot.loader.grub = {
|
||
|
enable = true;
|
||
|
zfsSupport = true;
|
||
|
efiSupport = true;
|
||
|
efiInstallAsRemovable = true;
|
||
|
mirroredBoots = [
|
||
|
{ devices = [ "nodev"]; path = "/boot"; }
|
||
|
];
|
||
|
};
|
||
|
}
|