5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
14 lines
241 B
Nix
14 lines
241 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
options = {
|
|
oci = {
|
|
efi = lib.mkOption {
|
|
default = true;
|
|
internal = true;
|
|
description = ''
|
|
Whether the OCI instance is using EFI.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|