2021-05-28 21:57:58 -04:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
oci = {
|
|
|
|
efi = lib.mkOption {
|
2023-09-21 22:06:15 +01:00
|
|
|
default = true;
|
2021-05-28 21:57:58 -04:00
|
|
|
internal = true;
|
|
|
|
description = ''
|
|
|
|
Whether the OCI instance is using EFI.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|