83627f9931
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
20 lines
450 B
Nix
20 lines
450 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
options = {
|
|
oci = {
|
|
efi = lib.mkOption {
|
|
default = true;
|
|
internal = true;
|
|
description = ''
|
|
Whether the OCI instance is using EFI.
|
|
'';
|
|
};
|
|
diskSize = lib.mkOption {
|
|
type = lib.types.int;
|
|
default = 8192;
|
|
description = "Size of the disk image created in MB.";
|
|
example = "diskSize = 12 * 1024; # 12GiB";
|
|
};
|
|
};
|
|
};
|
|
}
|