1{
2 lib,
3 ...
4}:
5{
6 imports = [
7 ./disk-size-option.nix
8 (lib.mkRenamedOptionModuleWith {
9 sinceRelease = 2411;
10 from = [
11 "oci"
12 "diskSize"
13 ];
14 to = [
15 "virtualisation"
16 "diskSize"
17 ];
18 })
19 ];
20
21 options = {
22 oci = {
23 efi = lib.mkOption {
24 default = true;
25 internal = true;
26 description = ''
27 Whether the OCI instance is using EFI.
28 '';
29 };
30 };
31 };
32}